addPage method
void
addPage({})
Add a page to generate a shell for
Implementation
void addPage({
required String path,
required String title,
String? description,
String? ogImage,
String? ogType,
String? canonicalUrl,
String? jsonLd,
String? noscriptContent,
Map<String, String>? additionalMeta,
}) {
_pages.add(
HtmlShellPage(
path: path,
title: title,
description: description,
ogImage: ogImage,
ogType: ogType,
canonicalUrl: canonicalUrl,
jsonLd: jsonLd,
noscriptContent: noscriptContent,
additionalMeta: additionalMeta,
),
);
}