A constructor

const A({
  1. NodeElement? child,
  2. List<NodeElement>? children,
  3. bool download = false,
  4. String? href,
  5. String? hreflang,
  6. RelA? rel,
  7. TargetA? target,
  8. String? type,
  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 A({
  NodeElement? child,
  List<NodeElement>? children,
  this.download = false,
  this.href,
  this.hreflang,
  this.rel,
  this.target,
  this.type,
  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);