Head constructor

Head({
  1. String? title,
  2. String? description,
  3. String? canonical,
  4. String? image,
  5. String? type,
  6. String? siteName,
  7. String? locale,
  8. bool replace = true,
  9. List<HeadTag> tags = const [],
})

Creates a head component from common SEO fields and custom tags.

Implementation

Head({
  this.title,
  this.description,
  this.canonical,
  this.image,
  this.type,
  this.siteName,
  this.locale,
  this.replace = true,
  this.tags = const [],
});