remove method

Future<void> remove(
  1. K key, {
  2. bool store = true,
})

Removes the item with the provided key.

Implementation

Future<void> remove(K key, {bool store = true}) async {
  for (final p in paginations.map((e) => e.p)) {
    await p.remove(key, store: store);
  }
}