Book constructor
Book({
- required Heading heading,
- required List<
Author> authors, - required ChapterList chapters,
- ChapterList? appendices,
Implementation
Book(
{required this.heading,
required this.authors,
required this.chapters,
this.appendices});