fetch property

Future<Page<T, C>> Function({C? after, C? before, int? first, int? last}) fetch
final

Callback fetching items from the remote.

Implementation

final Future<Page<T, C>> Function({
  int? first,
  int? last,
  C? before,
  C? after,
})
fetch;