getChapters method

List<EpubChapter> getChapters()

Returns list of EpubChapter from epub, should be called after onChaptersLoaded callback, otherwise returns empty list

Implementation

List<EpubChapter> getChapters() {
  checkEpubLoaded();
  return chapters;
}