TimepickerWidget constructor

const TimepickerWidget({
  1. Key? key,
  2. String? initialTime,
  3. required ValueChanged<String> onHoraSeleccionada,
  4. Color? colorIcono,
})

Implementation

const TimepickerWidget({
  super.key,
  this.initialTime,
  required this.onHoraSeleccionada,
  this.colorIcono,
});