DurationPickerDialog constructor

const DurationPickerDialog({
  1. Key? key,
  2. Duration? initialValue,
  3. ValueChanged<Duration?>? onChanged,
})

Creates a duration picker dialog.

Implementation

const DurationPickerDialog({
  super.key,
  this.initialValue,
  this.onChanged,
});