isTomorrow method

bool isTomorrow()

Returns true if the date is tomorrow.

Implementation

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