Form constructor

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

Implementation

const Form({
  NodeElement? child,
  List<NodeElement>? children,
  this.acceptCharset,
  this.action,
  this.autocomplete,
  this.enctype,
  this.method,
  this.name,
  this.formnovalidate = false,
  this.target,
  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);