A Dart package of Japanese holidays.
Get holidays. You can get next year's public holidays from the previous year.
final List<Holiday> holidays = await getHolidayList();
print(holidays);
Get holidays by year.
final year = DateTime.now().year;
final List<Holiday> holidays = await getHolidayList(year: year);
print(holidays);