SeoPage constructor

const SeoPage({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. String? description,
  5. String? ogImage,
  6. String? canonicalUrl,
  7. List<String>? keywords,
  8. String? author,
  9. List<JsonLdSchema>? structuredData,
  10. bool indexable = true,
  11. bool followable = true,
  12. OgTags? ogTags,
  13. TwitterCardConfig? twitterCard,
  14. Map<String, String>? customMeta,
  15. Map<String, String>? customPropertyMeta,
  16. bool trackPageView = true,
  17. List<NoscriptLink>? noscriptLinks,
  18. String? noscriptBody,
})

Implementation

const SeoPage({
  super.key,
  required this.title,
  required this.child,
  this.description,
  this.ogImage,
  this.canonicalUrl,
  this.keywords,
  this.author,
  this.structuredData,
  this.indexable = true,
  this.followable = true,
  this.ogTags,
  this.twitterCard,
  this.customMeta,
  this.customPropertyMeta,
  this.trackPageView = true,
  this.noscriptLinks,
  this.noscriptBody,
});