Book constructor

Book({
  1. required String bookPath,
  2. required String langPath,
  3. required BookIgnore ignore,
  4. required BookConfig config,
  5. required BookReadme readme,
  6. required BookSummary summary,
  7. required BookGlossary glossary,
  8. String? lang,
})

Implementation

Book({
  required this.bookPath,
  required this.langPath,
  required this.ignore,
  required this.config,
  required this.readme,
  required this.summary,
  required this.glossary,
  this.lang,
});