TxtFormInputConfig constructor

const TxtFormInputConfig({
  1. String? fontFamily,
  2. String? labelFontFamily,
  3. String? hintFontFamily,
  4. double? labelTextSize,
  5. double? hintTextSize,
  6. Color? labelTextColor,
  7. Color? hintTextColor,
  8. FontStyle? labelFontStyle,
  9. FontStyle? hintFontStyle,
  10. FontWeight? labelFontWeight,
  11. FontWeight? hintFontWeight,
  12. double? borderWidth,
  13. BorderRadius? borderRadius,
  14. Color? borderColor,
  15. Color? fillColor,
  16. Color? cursorColor,
  17. double? labelPadding,
  18. double? height,
  19. TxtInputBorderType? borderType,
})

Implementation

const TxtFormInputConfig({
  this.fontFamily,
  this.labelFontFamily,
  this.hintFontFamily,
  this.labelTextSize,
  this.hintTextSize,
  this.labelTextColor,
  this.hintTextColor,
  this.labelFontStyle,
  this.hintFontStyle,
  this.labelFontWeight,
  this.hintFontWeight,
  this.borderWidth,
  this.borderRadius,
  this.borderColor,
  this.fillColor,
  this.cursorColor,
  this.labelPadding,
  this.height,
  this.borderType,
});