tomorrowAsDateTime static method

DateTime tomorrowAsDateTime()

Implementation

static DateTime tomorrowAsDateTime() {
  DateTime now = DateTime.now();
  return DateTime(now.year, now.month, now.day + 1);
}