WeekPeriod constructor
A class that implements a period type of a week.
Implementation
WeekPeriod({required super.start, required super.end})
: assert(
end.difference(start) <=
const Duration(
days: 7,
minutes: 59,
seconds: 59,
milliseconds: 999,
microseconds: 999,
),
'The difference between start and end must be 7 days, 0 hours, '
'59 minutes, 59 seconds, 999 milliseconds and 999 microseconds',
) {
if ((duration > const Duration(days: 7, hours: 1)) ||
(duration <
const Duration(
days: 6,
hours: 22,
minutes: 59,
seconds: 59,
milliseconds: 999,
microseconds: 999,
)) ||
(start.exactTimeOfDay != Duration.zero) ||
(end.exactTimeOfDay != end.endOfDay.exactTimeOfDay) ||
(end.weekday != Weekday.from(start).previous.dateTimeValue)) {
throw ArgumentError.value(
end,
'end',
'End must be at the same week as start and must be the last '
'microsecond of the week',
);
}
}