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