html function
Node
html(
{ - String? manifest,
- String? xmlns,
- String? lang,
- String? id,
- dynamic className,
- dynamic style,
- Map<String, dynamic> p = const {},
- @deprecated Map<String, dynamic> props = const {},
- Iterable<Node> c = const [],
- @deprecated Iterable<Node> children = const [],
})
Implementation
Node html(
{String? manifest,
String? xmlns,
String? lang,
String? id,
className,
style,
Map<String, dynamic> p = const {},
@deprecated Map<String, dynamic> props = const {},
Iterable<Node> c = const [],
@deprecated Iterable<Node> children = const []}) =>
h(
'html',
_apply([
p,
props
], {
'manifest': manifest,
'xmlns': xmlns,
'lang': lang,
'id': id,
'class': className,
'style': style
}),
[...c, ...children]);