DateTimeRange<T extends DateTime> constructor

DateTimeRange<T extends DateTime>({
  1. required T start,
  2. required T end,
})

Creates a date range for the given start and end DateTime.

Implementation

DateTimeRange({required this.start, required this.end}) : assert(!start.isAfter(end));