InvalidDateRangeException constructor

const InvalidDateRangeException(
  1. String message, {
  2. DateTime? startDate,
  3. DateTime? endDate,
})

Implementation

const InvalidDateRangeException(
  super.message, {
  this.startDate,
  this.endDate,
});