$h function
Creates a h$N node (h1, h2, h3...).
Implementation
DOMElement $h(int n,
{Object? id,
Object? classes,
Object? style,
Map<String, String>? attributes,
Object? content,
bool? hidden,
bool commented = false}) =>
$tag('h$n',
id: id,
classes: classes,
style: style,
attributes: attributes,
content: content,
hidden: hidden,
commented: commented);