isTomorrow property

bool get isTomorrow

Returns true if the date is tomorrow.

Implementation

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