isToday property
bool
get
isToday
Implementation
bool get isToday {
final now = DateTime.now();
return day == now.day && month == now.month && year == now.year;
}
bool get isToday {
final now = DateTime.now();
return day == now.day && month == now.month && year == now.year;
}