PaginatedImpl<K, T, V, C> constructor

PaginatedImpl<K, T, V, C>({
  1. Pagination<V, C, K>? pagination,
  2. List<FutureOr<Map<K, T>>> initial = const [],
  3. K? initialKey,
  4. C? initialCursor,
  5. void onDispose()?,
})

Implementation

PaginatedImpl({
  this.pagination,
  this.initial = const [],
  this.initialKey,
  this.initialCursor,
  super.onDispose,
});