CLTimePicker constructor

const CLTimePicker({
  1. Key? key,
  2. TimeOfDay? initial,
  3. ValueChanged<TimeOfDay>? onChanged,
  4. bool use24h = true,
  5. bool showSeconds = false,
  6. double? fieldWidth,
})

Implementation

const CLTimePicker({
  super.key,
  this.initial,
  this.onChanged,
  this.use24h = true,
  this.showSeconds = false,
  this.fieldWidth,
});