SeoPage constructor
const
SeoPage({
- Key? key,
- required String title,
- required Widget child,
- String? description,
- String? ogImage,
- String? canonicalUrl,
- List<
String> ? keywords, - String? author,
- List<
JsonLdSchema> ? structuredData, - bool indexable = true,
- bool followable = true,
- OgTags? ogTags,
- TwitterCardConfig? twitterCard,
- Map<
String, String> ? customMeta, - Map<
String, String> ? customPropertyMeta, - bool trackPageView = true,
- List<
NoscriptLink> ? noscriptLinks, - String? noscriptBody,
Implementation
const SeoPage({
super.key,
required this.title,
required this.child,
this.description,
this.ogImage,
this.canonicalUrl,
this.keywords,
this.author,
this.structuredData,
this.indexable = true,
this.followable = true,
this.ogTags,
this.twitterCard,
this.customMeta,
this.customPropertyMeta,
this.trackPageView = true,
this.noscriptLinks,
this.noscriptBody,
});