isTomorrow property

bool get isTomorrow

Implementation

bool get isTomorrow {
  var now = DateTime.now();
  var tomorrow = now.add(Duration(days: 1));
  return tomorrow.year == year &&
      tomorrow.month == month &&
      tomorrow.day == day;
}