isSpecialPastDay method
Implementation
static bool isSpecialPastDay(DateTime date) {
return isPastDay(date) || (isToday(date) && DateTime.now().hour >= 12);
}
static bool isSpecialPastDay(DateTime date) {
return isPastDay(date) || (isToday(date) && DateTime.now().hour >= 12);
}