month static method

DateTime month(
  1. int year,
  2. int month
)

Implementation

static DateTime month(int year, int month) {
  final date = DateTime.utc(year, month, 1);
  assert(date.debugCheckIsValidTimetableMonth());
  return date;
}