isTomorrow property

bool isTomorrow

Implementation

bool get isTomorrow {
  final nowDate = DateTime.now();
  return year == nowDate.year &&
      month == nowDate.month &&
      day == nowDate.day + 1;
}