currentMonth static method

DateTime currentMonth()

Implementation

static DateTime currentMonth() {
  final month = DateTimeTimetable.today().firstDayOfMonth;
  assert(month.debugCheckIsValidTimetableMonth());
  return month;
}