link static method
Creates a link head tag descriptor.
Implementation
static HeadTag link({
required String href,
String rel = 'stylesheet',
Map<String, Object?> props = const {},
}) {
return HeadTag('link', props: {...props, 'rel': rel, 'href': href});
}