Select constructor

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

Implementation

const Select({
  NodeElement? child,
  List<NodeElement>? children,
  this.disabled = false,
  this.form,
  this.multiple = false,
  this.name,
  this.required = false,
  this.size,
  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);