WeekRange constructor

const WeekRange({
  1. required DateTime startDate,
  2. required DateTime endDate,
  3. bool isPartialWeek = false,
})

Implementation

const WeekRange({
  required this.startDate,
  required this.endDate,
  this.isPartialWeek = false,
});