fetch property

FutureOr<List<T>> Function({required int after, K? around, required int before})? fetch
final

Callback, called when the after and before amounts of T items around the provided K are required.

Only meaningful, if watch isn't provided, or otherwise it will be used instead.

Implementation

final FutureOr<List<T>> Function({
  required int after,
  required int before,
  K? around,
})?
fetch;