ContentDocument constructor

ContentDocument({
  1. required Map<String, dynamic> frontmatter,
  2. required String rawContent,
  3. required String htmlContent,
  4. required List<TocEntry> tableOfContents,
  5. required String path,
  6. required String slug,
})

Implementation

ContentDocument({
  required this.frontmatter,
  required this.rawContent,
  required this.htmlContent,
  required this.tableOfContents,
  required this.path,
  required this.slug,
});