Li constructor

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

Implementation

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