isTomorrow property

bool isTomorrow

Returns true if this occurs a day after today This doesn't account for time.

Implementation

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