removeAllForBook static method
Implementation
static void removeAllForBook(String bookId) {
final all = _readAll();
all.removeWhere((h) => h.bookId == bookId);
_writeAll(all);
}
static void removeAllForBook(String bookId) {
final all = _readAll();
all.removeWhere((h) => h.bookId == bookId);
_writeAll(all);
}