meta constructor

const meta({
  1. String? name,
  2. String? content,
  3. String? charset,
  4. String? httpEquiv,
  5. String? id,
  6. String? classes,
  7. Styles? styles,
  8. Map<String, String>? attributes,
  9. Map<String, EventCallback>? events,
  10. Key? key,
})

The <meta> HTML element represents metadata that cannot be represented by other HTML meta-related elements, like <base >, <link >, <script >, <style > or <title >.

Implementation

const meta({
  this.name,
  this.content,
  this.charset,
  this.httpEquiv,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});