Label constructor

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

Implementation

const Label({
  NodeElement? child,
  List<NodeElement>? children,
  this.forId,
  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);