head function
The <head> HTML element contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets.
Implementation
Component head(
List<Component> children, {
Key? key,
String? id,
String? classes,
Styles? styles,
Map<String, String>? attributes,
Map<String, EventCallback>? events,
}) {
return Component.element(
tag: 'head',
key: key,
id: id,
classes: classes,
styles: styles,
attributes: attributes,
events: events,
children: children,
);
}