isLeapYear static method

bool isLeapYear(
  1. int year
)

Returns if given year a leap year

Implementation

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