DateRangePickerDialogFooter constructor

const DateRangePickerDialogFooter({
  1. Key? key,
  2. DateRange? selectedDateRange,
  3. required String cancelText,
  4. String confirmText = "Confirm",
})

Implementation

const DateRangePickerDialogFooter({
  super.key,
  this.selectedDateRange,
  required this.cancelText,
  // this.cancelText = "cancelText",
  this.confirmText = "Confirm",
});