DialogDateRange constructor

const DialogDateRange({
  1. Key? key,
  2. String? title,
  3. required ValueChanged<DateTimeRange> onConfirm,
  4. DateStateBuilder? stateBuilder,
  5. String confirmText = "Done",
  6. String cancelText = "Cancel",
  7. DateTimeRange? initialRange,
})

Implementation

const DialogDateRange(
    {super.key,
    this.title,
    required this.onConfirm,
    this.stateBuilder,
    this.confirmText = "Done",
    this.cancelText = "Cancel",
    this.initialRange});