getHolidaysByYear static method

List<Holiday> getHolidaysByYear(
  1. int year
)

获取指定年的节假日列表 @param year 年 @return 节假日列表

Implementation

static List<Holiday> getHolidaysByYear(int year) {
  return findHolidaysForward('$year');
}