SemesterPeriod constructor

SemesterPeriod({
  1. required DateTime start,
  2. required DateTime end,
})

A class that implements a period type of a semester.

Implementation

SemesterPeriod({required super.start, required super.end})
    : assert(
        end.difference(start) <=
            const Duration(
              days: 183,
              hours: 23,
              minutes: 59,
              seconds: 59,
              milliseconds: 999,
              microseconds: 999,
            ),
        'The difference between start and end must be 183 days, 23 hours, '
        '59 minutes, 59 seconds, 999 milliseconds and 999 microseconds',
      ) {
  if ((start.exactTimeOfDay != Duration.zero) ||
      (end.exactTimeOfDay != end.endOfDay.exactTimeOfDay) ||
      start.isAtSameMonthAs(end) ||
      (start.firstDayOfMonth != start) ||
      (end.lastDayOfMonth.endOfDay != end) ||
      ((end.month - start.month) != 5)) {
    throw ArgumentError.value(
      end,
      'end',
      'End must be at the same semester as start and must be the last '
          'microsecond of the semester',
    );
  }
}