Chapter constructor

Chapter({
  1. required Heading heading,
  2. required List<Content> contents,
})

Implementation

Chapter({
  required this.heading,
  required this.contents,
});