TextAreaBorderBottom constructor

const TextAreaBorderBottom({
  1. Key? key,
  2. IconData? icon,
  3. IconData? suffixIcon,
  4. int maxLength = 100,
  5. int maxLines = 10,
  6. int minLines = 1,
  7. bool isObsecure = false,
  8. String? label,
  9. String? textHint,
  10. String? textError,
  11. String? validatorText = "",
  12. TextInputType? inputType = TextInputType.text,
  13. TextEditingController? controller,
  14. FormFieldValidator<String>? validator,
  15. TextInputAction? inputAction,
  16. FontWeight? fontWeight,
  17. dynamic onFieldSubmitted(
    1. String
    )?,
  18. bool enable = true,
  19. bool autofocus = false,
  20. FocusNode? focusNode,
  21. dynamic onChanged(
    1. String
    )?,
  22. VoidCallback? onTap,
  23. double? borderRadius,
  24. Color? borderColor,
  25. List<BoxShadow>? boxShadow,
  26. double? padding,
  27. double? margin,
  28. bool borderBottom = true,
  29. Color? color = Colors.transparent,
  30. List<TextInputFormatter>? inputFormatters,
})

Implementation

const TextAreaBorderBottom({
  Key? key,
  this.icon,
  this.suffixIcon,
  this.maxLength = 100,
  this.maxLines = 10,
  this.minLines = 1,
  this.isObsecure = false,
  this.label,
  this.textHint,
  this.textError,
  this.validatorText = "",
  this.inputType = TextInputType.text,
  this.controller,
  this.validator,
  this.inputAction,
  this.fontWeight,
  this.onFieldSubmitted,
  this.enable = true,
  this.autofocus = false,
  this.focusNode,
  this.onChanged,
  this.onTap,
  this.borderRadius,
  this.borderColor,
  this.boxShadow,
  this.padding,
  this.margin,
  this.borderBottom = true,
  this.color = Colors.transparent,
  this.inputFormatters
}) : super(key: key);