DateRange constructor

const DateRange({
  1. required int startDate,
  2. required int endDate,
})

Represents a date range

Implementation

const DateRange({
  required this.startDate,
  required this.endDate,
});