isTomorrow property

bool get isTomorrow

Chech if this is tomorrow (one day in the future)

Implementation

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