put method

Future<void> put(
  1. T item, {
  2. bool ignoreBounds = false,
  3. bool store = true,
})

Adds the provided item to the paginations.

Implementation

Future<void> put(
  T item, {
  bool ignoreBounds = false,
  bool store = true,
}) async {
  for (final p in paginations.where((p) => p.addIf(item)).map((e) => e.p)) {
    await p.put(item, ignoreBounds: ignoreBounds, store: store);
  }
}