Head.seo constructor
Head.seo({})
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,
);