Book constructor
Book({
- required String bookPath,
- required String langPath,
- required BookIgnore ignore,
- required BookConfig config,
- required BookReadme readme,
- required BookSummary summary,
- required BookGlossary glossary,
- 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,
});