getParagraphHighlights static method
Implementation
static List<HighlightModel> getParagraphHighlights(
String bookId, int chapterIndex, String paragraphKey) {
return _readAll()
.where((h) =>
h.bookId == bookId &&
h.chapterIndex == chapterIndex &&
h.paragraphKey == paragraphKey)
.toList();
}