put method
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);
}
}