isTomorrow property

bool get isTomorrow

Implementation

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

  return isSameDate(tomorrow);
}