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