isTomorrow property

bool get isTomorrow

Checks if the current date is tomorrow

Implementation

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