MetaTag constructor

const MetaTag({
  1. String? name,
  2. String? property,
  3. required String content,
  4. String? httpEquiv,
})

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',
     );