TimePickerDialog constructor

const TimePickerDialog({
  1. Key? key,
  2. TimeOfDay? initialValue,
  3. ValueChanged<TimeOfDay?>? onChanged,
  4. required bool use24HourFormat,
  5. bool showSeconds = false,
})

Implementation

const TimePickerDialog({
  super.key,
  this.initialValue,
  this.onChanged,
  required this.use24HourFormat,
  this.showSeconds = false,
});