Book constructor

Book({
  1. required Heading heading,
  2. required List<Author> authors,
  3. required ChapterList chapters,
  4. ChapterList? appendices,
})

Implementation

Book(
    {required this.heading,
    required this.authors,
    required this.chapters,
    this.appendices});