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