FlDateRangePicker constructor

const FlDateRangePicker({
  1. Key? key,
  2. DateTime? initialStartDate,
  3. DateTime? initialEndDate,
  4. dynamic startEndDateChange(
    1. DateTime?,
    2. DateTime?
    )?,
  5. DateTime? minimumDate,
  6. required String textSelectDate,
  7. required String textSelectEndDate,
  8. DateTime? maximumDate,
})

Implementation

const FlDateRangePicker({
  Key? key,
  this.initialStartDate,
  this.initialEndDate,
  this.startEndDateChange,
  this.minimumDate,
  required this.textSelectDate,
  required this.textSelectEndDate,
  this.maximumDate,
}) : super(key: key);