TClockTimePicker constructor

const TClockTimePicker({
  1. Key? key,
  2. required TimeOfDay initialTime,
  3. required ValueChanged<TimeOfDay> onTimeChanged,
  4. double? width,
  5. double? height,
})

Implementation

const TClockTimePicker({
  super.key,
  required this.initialTime,
  required this.onTimeChanged,
  this.width,
  this.height,
});