$label function
Creates a label
node.
Implementation
DOMElement $label(
{Object? id,
String? forID,
Object? classes,
Object? style,
Map<String, String>? attributes,
Object? content,
bool? hidden,
bool commented = false}) =>
$tag('label',
id: id,
classes: classes,
style: style,
attributes: {if (forID != null) 'for': forID, ...?attributes},
content: content,
hidden: hidden,
commented: commented);