Return whether it is leap year. 是否是闰年
static bool isLeapYear(DateTime dateTime) { return isLeapYearByYear(dateTime.year); }