DialogDateRange constructor

const DialogDateRange({
  1. required String title,
  2. required void onConfirm(
    1. DateRange?
    ),
  3. DateRange? value,
  4. Key? key,
})

Implementation

const DialogDateRange({
  required this.title,
  required this.onConfirm,
  this.value,
  super.key,
});