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