Html constructor
const
Html({
- NodeElement? child,
- List<
NodeElement> ? children, - String? manifest,
- String? dataTheme,
- String? accesskey,
- bool autofocus = false,
- List<
StyleClass> ? classList, - bool contentEditable = false,
- String? dir,
- String? id,
- String? lang,
- String? role,
- bool spellcheck = false,
- List<
StyleCSS> ? styleList, - int? tabindex,
- 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);