isTomorrow property

bool get isTomorrow

Checks if this date is tomorrow.

Example:

print(DateTime.now().add(Duration(days: 1)).isTomorrow); // true

Implementation

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