isLeapYearByYear static method

bool isLeapYearByYear(
  1. int year
)

判断是否为闰年

year年份

Implementation

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