isTomorrow method

bool isTomorrow()

Implementation

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