isLeapYearByYear static method

bool isLeapYearByYear(
  1. int year
)

Return whether it is leap year. 是否是闰年

Implementation

static bool isLeapYearByYear(int year) {
  return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;
}