ShadTimePickerTextEditingController constructor

ShadTimePickerTextEditingController({
  1. String? text,
  2. TextStyle? placeholderStyle,
  3. int min = 0,
  4. int max = 59,
})

Implementation

ShadTimePickerTextEditingController({
  super.text,
  this.placeholderStyle,
  this.min = 0,
  this.max = 59,
});