UiTimePicker constructor

const UiTimePicker({
  1. Key? key,
  2. CallBackTimerPicker? onSelected,
  3. TextStyle? textStyle,
  4. Color backgroundColor = Colors.white,
  5. IconData icon = Icons.timer_outlined,
  6. String helpText = 'Select the hour',
})

Implementation

const UiTimePicker(
    {super.key,
    this.onSelected,
    this.textStyle,
    this.backgroundColor = Colors.white,
    this.icon = Icons.timer_outlined,
    this.helpText = 'Select the hour'});