clearHighlights function

void clearHighlights(
  1. int sectionIndex,
  2. Book book,
  3. ReaderBloc readerBloc
)

Implementation

void clearHighlights(int sectionIndex, Book book, ReaderBloc readerBloc) {
  box.put(book.getHighlightFileName(sectionIndex), null);
  readerBloc.highlights = [];
  // setState(() {});
}