menu
rechron_core package
documentation
rechron_core.dart
isLeapYear function
isLeapYear function
dark_mode
light_mode
isLeapYear
function
bool
isLeapYear
(
int
year
)
Implementation
bool isLeapYear(int year) => (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0));
rechron_core package
documentation
rechron_core
isLeapYear function
rechron_core library