meta static method
Creates a meta head tag descriptor.
Implementation
static HeadTag meta({
String? charset,
String? name,
String? content,
String? property,
Map<String, Object?> props = const {},
}) {
return HeadTag(
'meta',
props: {
...props,
if (charset != null) 'charset': charset,
if (name != null) 'name': name,
if (content != null) 'content': content,
if (property != null) 'property': property,
},
);
}