isLeapYear static method

bool isLeapYear(
  1. int year
)

Check if a year is leap year

year - The year to check Returns true if leap year, false otherwise

Implementation

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