Chapter constructor

Chapter(
  1. String name,
  2. ChapterBuildFunction _buildFn,
  3. Story story, {
  4. String? codeLink,
  5. String? info,
  6. bool pinInfo = false,
})

Implementation

Chapter(
  this.name,
  this._buildFn,
  this.story, {
  this.codeLink,
  this.info,
  this.pinInfo = false,
});