UpTimePicker constructor

const UpTimePicker({
  1. Key? key,
  2. UpInputType type = UpInputType.outline,
  3. required TextEditingController controller,
  4. required String label,
  5. UpValidation? validation,
  6. Function? onChange,
  7. UpColorType? colorType,
  8. UpStyle? style,
})

Implementation

const UpTimePicker({
  super.key,
  this.type = UpInputType.outline,
  required this.controller,
  required this.label,
  this.validation,
  this.onChange,
  this.colorType,
  this.style,
});