$tag function
Creates a node with tag
.
Implementation
DOMElement $tag(String tag,
{Object? id,
Object? classes,
Object? style,
Map<String, dynamic>? attributes,
Object? content,
bool? hidden,
bool commented = false}) {
return DOMElement(tag,
id: id,
classes: classes,
style: style,
attributes: attributes,
content: content,
hidden: hidden,
commented: commented);
}