prev method

Future<PaginationState<ReturnType>> prev()

Returns a future that completes when the previous page of data is available.

Implementation

Future<PaginationState<ReturnType>> prev() async {
  _prevInternal(await _waitForInternalState());
  return waitForData();
}