Code constructor

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

Implementation

const Code({
  NodeElement? child,
  List<NodeElement>? children,
  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);