isTomorrow property

bool get isTomorrow

Is this date tomorrow?

Implementation

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