Head.seo constructor

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

Creates a head component with common SEO and Open Graph metadata.

Implementation

Head.seo({
  String? title,
  String? description,
  String? canonical,
  String? image,
  String? type = 'website',
  String? siteName,
  String? locale,
  List<HeadTag> tags = const [],
}) : this(
        title: title,
        description: description,
        canonical: canonical,
        image: image,
        type: type,
        siteName: siteName,
        locale: locale,
        tags: tags,
      );