UITextFieldDefaults constructor

UITextFieldDefaults({
  1. double? borderRadius,
  2. UIBorderType? borderType,
  3. Color? borderColor,
  4. Color? focusBorderColor,
  5. Color? errorBorderColor,
  6. double? borderWidth,
  7. Color? hintColor,
  8. double? padding,
  9. Color? bgColor,
  10. Color? labelColor,
})

Implementation

UITextFieldDefaults({
  this.borderRadius,
  this.borderType,
  this.borderColor,
  this.focusBorderColor,
  this.errorBorderColor,
  this.borderWidth,
  this.hintColor,
  this.padding,
  this.bgColor,
  this.labelColor,
});