isTomorrow property
bool
get
isTomorrow
Implementation
bool get isTomorrow {
final tomorrow = DateTime.now().add(Duration(days: 1));
return year == tomorrow.year &&
month == tomorrow.month &&
day == tomorrow.day;
}