SEO constructor

const SEO({
  1. String? description,
  2. List<String>? keywords,
  3. List<String>? robots,
  4. String? title,
  5. String? url,
  6. String? socialMediaTitle,
  7. String? socialMediaDescription,
  8. String? socialMediaBanner,
})

Implementation

const SEO({
  this.description,
  this.keywords,
  this.robots,
  this.title,
  this.url,
  this.logo,
  this.socialMediaTitle,
  this.socialMediaDescription,
  this.socialMediaBanner,
});