AtomicSimpleTimePicker constructor

const AtomicSimpleTimePicker({
  1. Key? key,
  2. required ValueChanged<TimeOfDay?> onTimeSelected,
  3. TimeOfDay? initialTime,
  4. String? label,
  5. String hintText = 'Select time',
  6. bool enabled = true,
  7. bool? use24HourFormat,
})

Implementation

const AtomicSimpleTimePicker({
  super.key,
  required this.onTimeSelected,
  this.initialTime,
  this.label,
  this.hintText = 'Select time',
  this.enabled = true,
  this.use24HourFormat,
});