isTomorrow property
bool
get
isTomorrow
Checks if this time instance falls on the date after the current date.
Implementation
bool get isTomorrow {
final tomorrow = Time.now().addDays(1);
return isSameDay(tomorrow);
}