isTomorrow method
Returns true if the date is tomorrow.
Implementation
bool isTomorrow() =>
isSameDay(withThis: DateTime.now().add(const Duration(days: 1)));
Returns true if the date is tomorrow.
bool isTomorrow() =>
isSameDay(withThis: DateTime.now().add(const Duration(days: 1)));