TextFieldCustom constructor

TextFieldCustom({
  1. Key? key,
  2. double? hight,
  3. int? maxLines,
  4. double? vertical,
  5. bool? enabled,
  6. String? hintText,
  7. bool obscureText = false,
  8. TextInputAction? textInputAction,
  9. TextInputType? keyboardType,
  10. TextEditingController? controller,
  11. List<TextInputFormatter>? formatters,
  12. String? errorText,
  13. TextStyle? errorStyle,
  14. int? errorMaxLines,
  15. FormFieldValidator<String>? validator,
})

Implementation

TextFieldCustom({
  Key? key,
  this.hight,
  this.maxLines,
  this.vertical,
  this.enabled,
  this.hintText,
  this.obscureText = false,
  this.textInputAction,
  this.keyboardType,
  this.controller,
  this.formatters,
  this.errorText,
  this.errorStyle,
  this.errorMaxLines,
  this.validator,
}) : super(key: key);