isLeapYear property
Check if this year is a Leap Year
Implementation
bool get isLeapYear => year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);
Check if this year is a Leap Year
bool get isLeapYear => year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);