isTomorrow property

bool get isTomorrow

Returns true if this date represents tomorrow.

Implementation

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