TrimesterPeriod constructor

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

A class that implements a period type of a trimester.

Implementation

TrimesterPeriod({required super.start, required super.end})
    : assert(
        end.difference(start) <=
            const Duration(
              days: 91,
              hours: 23,
              minutes: 59,
              seconds: 59,
              milliseconds: 999,
              microseconds: 999,
            ),
        'The difference between start and end must be 91 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) != 2)) {
    throw ArgumentError.value(
      end,
      'end',
      'End must be at the same trimester as start and must be the last '
          'microsecond of the trimester',
    );
  }
}