put method
- V item, {
- 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);
}
Puts the provided item
to the pagination.
Future<void> put(V item, {bool ignoreBounds = false}) async {
await pagination?.put(item, ignoreBounds: ignoreBounds);
}