ShadTimePickerController constructor

ShadTimePickerController({
  1. int? hour,
  2. int? minute,
  3. int? second,
  4. ShadDayPeriod? period,
})

Creates a ShadTimePickerController.

Allows specifying initial hour, minute, second, and period.

Implementation

ShadTimePickerController({
  this.hour,
  this.minute,
  this.second,
  this.period,
});