MetaTag constructor
Implementation
const MetaTag({
this.name,
this.property,
required this.content,
this.httpEquiv,
}) : assert(
name != null || property != null || httpEquiv != null,
'MetaTag must have either name, property, or httpEquiv',
);