RxPaginatedImpl<K, T, V, C> constructor
RxPaginatedImpl<K, T, V, C>({ - required FutureOr<T?> transform({
- required V data,
- T? previous,
}),
- List<FutureOr<Map<K, T>>> initial = const [],
- K? initialKey,
- C? initialCursor,
- void onDispose()?,
})
Implementation
RxPaginatedImpl({
required this.transform,
required Pagination<V, C, K> super.pagination,
super.initial,
super.initialKey,
super.initialCursor,
super.onDispose,
}) {
// TODO: Replace completely with bug-free [_apply]ing of items right away.
_paginationSubscription = pagination!.changes.listen((event) async {
switch (event.op) {
case OperationKind.added:
case OperationKind.updated:
await _apply(event.key as K, event.value as V);
break;
case OperationKind.removed:
items.remove(event.key);
break;
}
});
}