MonthRange constructor

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

Implementation

const MonthRange({
  required this.startDate,
  required this.endDate,
  this.isPartialMonth = false,
});