now static method

DateTime now()

Implementation

static DateTime now() {
  final date = DateTime.now().copyWith(isUtc: true);
  assert(date.debugCheckIsValidTimetableDateTime());
  return date;
}