link function
Implementation
Element link({
String? id,
String? className,
String? rel,
String? href,
Map<String, dynamic>? attributes,
}) => h(
'link',
id: id,
className: className,
attributes: {'rel': rel, 'href': href, ...?attributes},
selfClosing: true,
);