CharacterBook.from constructor

CharacterBook.from({
  1. required List<CharacterChapter> chapters,
})

Returns the new instance of CharacterBook based on an argument.

Implementation

CharacterBook.from({
  required this.chapters,
});