removeAllForBook static method

void removeAllForBook(
  1. String bookId
)

Implementation

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