Textarea constructor

const Textarea({
  1. NodeElement? child,
  2. List<NodeElement>? children,
  3. int? cols,
  4. bool disabled = false,
  5. String? form,
  6. int? maxlength,
  7. String? name,
  8. String? placeholder,
  9. bool readonly = false,
  10. bool required = false,
  11. int? rows,
  12. WrapTextarea? wrap,
  13. String? accesskey,
  14. bool autofocus = false,
  15. List<StyleClass>? classList,
  16. bool contentEditable = false,
  17. String? contextmenu,
  18. String? dir,
  19. bool hidden = false,
  20. String? id,
  21. String? lang,
  22. String? role,
  23. bool spellcheck = false,
  24. List<StyleCSS>? styleList,
  25. int? tabindex,
  26. String? title,
  27. String? onblur,
  28. String? onchange,
  29. String? onclick,
  30. String? ondblclick,
  31. String? onfocus,
  32. String? onkeydown,
  33. String? onkeypress,
  34. String? onkeyup,
  35. String? onload,
  36. String? onmousedown,
  37. String? onmousemove,
  38. String? onmouseout,
  39. String? onmouseover,
  40. String? onmouseup,
  41. String? onreset,
  42. String? onselect,
  43. String? onsubmit,
  44. String? onunload,
})

Implementation

const Textarea({
  NodeElement? child,
  List<NodeElement>? children,
  this.cols,
  this.disabled = false,
  this.form,
  this.maxlength,
  this.name,
  this.placeholder,
  this.readonly = false,
  this.required = false,
  this.rows,
  this.wrap,
  this.accesskey,
  this.autofocus = false,
  this.classList,
  this.contentEditable = false,
  this.contextmenu,
  this.dir,
  this.hidden = false,
  this.id,
  this.lang,
  this.role,
  this.spellcheck = false,
  this.styleList,
  this.tabindex,
  this.title,
  this.onblur,
  this.onchange,
  this.onclick,
  this.ondblclick,
  this.onfocus,
  this.onkeydown,
  this.onkeypress,
  this.onkeyup,
  this.onload,
  this.onmousedown,
  this.onmousemove,
  this.onmouseout,
  this.onmouseover,
  this.onmouseup,
  this.onreset,
  this.onselect,
  this.onsubmit,
  this.onunload,
}) : super(child: child, children: children);