remove method

Future<void> remove(
  1. K key
)

Removes the item with the provided key from the pagination.

Implementation

Future<void> remove(K key) async {
  await pagination?.remove(key);
}