Html constructor

const Html({
  1. NodeElement? child,
  2. List<NodeElement>? children,
  3. String? manifest,
  4. String? dataTheme,
  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,
})

Implementation

const Html({
  NodeElement? child,
  List<NodeElement>? children,
  this.manifest,
  this.dataTheme,
  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,
}) : super(child: child, children: children);