isTomorrow property

bool isTomorrow

Implementation

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