HtmlShellPage constructor

const HtmlShellPage({
  1. required String path,
  2. required String title,
  3. String? description,
  4. String? ogImage,
  5. String? ogType,
  6. String? canonicalUrl,
  7. String? jsonLd,
  8. String? noscriptContent,
  9. Map<String, String>? additionalMeta,
})

Implementation

const HtmlShellPage({
  required this.path,
  required this.title,
  this.description,
  this.ogImage,
  this.ogType,
  this.canonicalUrl,
  this.jsonLd,
  this.noscriptContent,
  this.additionalMeta,
});