NiceTimePicker constructor

const NiceTimePicker({
  1. Key? key,
  2. TimeOfDay? value,
  3. ValueChanged<TimeOfDay>? onChanged,
  4. String? label,
  5. String? hint,
  6. bool use24HourFormat = true,
  7. int minuteInterval = 1,
  8. bool enabled = true,
})

Implementation

const NiceTimePicker({
  super.key,
  this.value,
  this.onChanged,
  this.label,
  this.hint,
  this.use24HourFormat = true,
  this.minuteInterval = 1,
  this.enabled = true,
});