SeoData constructor

const SeoData({
  1. String? title,
  2. String? description,
  3. String? image,
  4. String? ogType,
  5. String? twitterCard,
  6. String? keywords,
  7. String? themeColor,
  8. String? canonicalUrl,
  9. String? locale,
  10. bool? noIndex,
  11. Map<String, dynamic>? structuredData,
})

Implementation

const SeoData({
  this.title,
  this.description,
  this.image,
  this.ogType,
  this.twitterCard,
  this.keywords,
  this.themeColor,
  this.canonicalUrl,
  this.locale,
  this.noIndex,
  this.structuredData,
});