isTomorrow property
bool
get
isTomorrow
Implementation
bool get isTomorrow {
final now = DateTime.now();
final tomorrow = DateTime(now.year, now.month, now.day + 1);
return day == tomorrow.day &&
month == tomorrow.month &&
year == tomorrow.year;
}