TFFMaker constructor

TFFMaker({
  1. Key? key,
  2. GlobalKey<FormState>? FormKey,
  3. bool? enabled,
  4. String? validator(
    1. String? value
    )?,
  5. Widget? prefix,
  6. double? enabledBorderwidth,
  7. double? errorBorderwidth,
  8. double? focusedBorderwidth,
  9. Color? enabledBorderColor,
  10. Color? errorBorderColor,
  11. Color? focusedBorderColor,
  12. Widget? suffix,
  13. double? focusedCircularRadius,
  14. double? enabledCircularRadius,
  15. double? errorCircularRadius,
  16. String? hintText,
  17. TextStyle? hintStyle,
  18. Widget? label,
  19. Color? disabledBorderColor,
  20. double? disabledBorderwidth,
  21. double? disabledCircularRadius,
  22. dynamic onChanged(
    1. String value
    )?,
  23. dynamic onSaved(
    1. String? value
    )?,
  24. int? lines,
  25. String? initialValue,
})

Implementation

TFFMaker(
    {super.key,
    this.FormKey,
    this.enabled,
    this.validator,
    this.prefix,
    this.enabledBorderwidth,
    this.errorBorderwidth,
    this.focusedBorderwidth,
    this.enabledBorderColor,
    this.errorBorderColor,
    this.focusedBorderColor,
    this.suffix,
    this.focusedCircularRadius,
    this.enabledCircularRadius,
    this.errorCircularRadius,
    this.hintText,
    this.hintStyle,
    this.label,
    this.disabledBorderColor,
    this.disabledBorderwidth,
    this.disabledCircularRadius,
    this.onChanged,
    this.onSaved,
    this.lines,
    this.initialValue});