isLeapYear property
bool
get
isLeapYear
Whether the year is a leap year.
Implementation
bool get isLeapYear => (year % 4 == 0 && year % 100 != 0) || year % 400 == 0;
Whether the year is a leap year.
bool get isLeapYear => (year % 4 == 0 && year % 100 != 0) || year % 400 == 0;