put method

Future<void> put(
  1. V item, {
  2. bool ignoreBounds = false,
})

Puts the provided item to the pagination.

Implementation

Future<void> put(V item, {bool ignoreBounds = false}) async {
  await pagination?.put(item, ignoreBounds: ignoreBounds);
}