isTomorrow property
bool
get
isTomorrow
Is this date tomorrow?
Implementation
bool get isTomorrow =>
isSameDate(DateTime.now().add(const Duration(days: 1)));
Is this date tomorrow?
bool get isTomorrow =>
isSameDate(DateTime.now().add(const Duration(days: 1)));