isLeapYear static method

bool isLeapYear(
  1. int year
)

isLeapYear method

Implementation

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