TextArea constructor

const TextArea({
  1. String? autoComplete,
  2. String? name,
  3. String? form,
  4. String? value,
  5. String? placeholder,
  6. int? rows,
  7. int? cols,
  8. int? minLength,
  9. int? maxLength,
  10. bool? required,
  11. bool? readOnly,
  12. bool? disabled,
  13. SpellCheckType? spellCheck,
  14. WrapType? wrap,
  15. EventCallback? onChange,
  16. EventCallback? onInput,
  17. EventCallback? onKeyUp,
  18. EventCallback? onKeyDown,
  19. EventCallback? onKeyPress,
  20. Key? key,
  21. NullableElementCallback? ref,
  22. String? id,
  23. String? title,
  24. String? style,
  25. String? className,
  26. bool? hidden,
  27. String? innerText,
  28. Widget? child,
  29. List<Widget>? children,
  30. EventCallback? onClick,
  31. Map<String, String>? additionalAttributes,
})

Implementation

const TextArea({
  this.autoComplete,
  this.name,
  this.form,
  this.value,
  this.placeholder,
  this.rows,
  this.cols,
  this.minLength,
  this.maxLength,
  this.required,
  this.readOnly,
  this.disabled,
  this.spellCheck,
  this.wrap,
  this.onChange,
  this.onInput,
  this.onKeyUp,
  this.onKeyDown,
  this.onKeyPress,
  Key? key,
  NullableElementCallback? ref,
  String? id,
  String? title,
  String? style,
  String? className,
  bool? hidden,
  String? innerText,
  Widget? child,
  List<Widget>? children,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );