isLeapYear property

bool isLeapYear

Whether this is a leap year, or not.

Implementation

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