SeoHead constructor

const SeoHead({
  1. Key? key,
  2. String? title,
  3. String? description,
  4. List<String>? keywords,
  5. String? canonicalUrl,
  6. String? author,
  7. OgTags? ogTags,
  8. String? ogImage,
  9. OgType? ogType,
  10. TwitterCardConfig? twitterCard,
  11. bool? indexable,
  12. bool? followable,
  13. String? robots,
  14. List<JsonLdSchema>? structuredData,
  15. String? noscriptTitle,
  16. String? noscriptDescription,
  17. String? noscriptBody,
  18. List<NoscriptLink>? noscriptLinks,
  19. Map<String, String>? customMeta,
  20. Map<String, String>? customPropertyMeta,
  21. List<Map<String, String>>? customLinkTags,
  22. bool trackPageView = true,
  23. Map<String, dynamic>? trackingParameters,
  24. Widget? child,
})

Implementation

const SeoHead({
  super.key,
  this.title,
  this.description,
  this.keywords,
  this.canonicalUrl,
  this.author,
  this.ogTags,
  this.ogImage,
  this.ogType,
  this.twitterCard,
  this.indexable,
  this.followable,
  this.robots,
  this.structuredData,
  this.noscriptTitle,
  this.noscriptDescription,
  this.noscriptBody,
  this.noscriptLinks,
  this.customMeta,
  this.customPropertyMeta,
  this.customLinkTags,
  this.trackPageView = true,
  this.trackingParameters,
  this.child,
});