SILTimePicker constructor

const SILTimePicker({
  1. required TextEditingController controller,
  2. required FormFieldCallback? onChanged,
  3. FormFieldCallback? onSaved,
  4. FocusNode? focusNode,
  5. String? hintText,
  6. String? initialValue,
  7. TextInputType? keyboardType,
  8. String? labelText,
  9. Icon? suffixIcon,
  10. FormFieldCallback? validator,
  11. InputDecoration? decoration,
})

Implementation

const SILTimePicker({
  required this.controller,
  required this.onChanged,
  this.onSaved,
  this.focusNode,
  this.hintText,
  this.initialValue,
  this.keyboardType,
  this.labelText,
  this.suffixIcon,
  this.validator,
  this.decoration,
});