a function
Implementation
Element a(
dynamic children, {
String? href,
String? target,
String? id,
String? className,
Map<String, dynamic>? attributes,
}) => _el(
'a',
children,
id: id,
className: className,
attributes: {'href': href, 'target': target, ...?attributes},
);