isToday property
bool
get
isToday
Checks if this time instance falls on the current date.
Implementation
bool get isToday {
// Capture now once for comparison
final now = Time.now();
return isSameDay(now);
}