HtmlMetadata constructor

const HtmlMetadata({
  1. String? title,
  2. String? description,
  3. String? author,
  4. String? date,
  5. String? language,
  6. List<String> keywords = const [],
  7. String? canonicalUrl,
  8. String? baseHref,
  9. List<LinkMetadata> links = const [],
  10. List<ImageMetadata> images = const [],
  11. List<Map<String, dynamic>> structuredData = const [],
})

Implementation

const HtmlMetadata({
  this.title,
  this.description,
  this.author,
  this.date,
  this.language,
  this.keywords = const [],
  this.canonicalUrl,
  this.baseHref,
  this.links = const [],
  this.images = const [],
  this.structuredData = const [],
});