isTomorrow property

bool get isTomorrow

Returns true if this date is tomorrow.

Implementation

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