reLoadChapter method
Implementation
reLoadChapter({bool init = false, int index = -1}) async {
int currentIndex =
bookProgress.getBookProgress(bookId).currentChapterIndex ?? 0;
setState(() {
loadChapterFuture = loadChapter(
index: init
? -1
: index == -1
? currentIndex
: index);
});
}