Hr constructor

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

Implementation

const Hr({
  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,
});