isTomorrow property

bool get isTomorrow

Returns true if the date is tomorrow, false otherwise.

Implementation

bool get isTomorrow => isSameDay(DateTime.now().add(const Duration(days: 1)));