fetchMoreRequest method

Future<RequestType> fetchMoreRequest()

This method defines the way we determine whether our current request has more data to fetch.

Implementation

Future<RequestType> fetchMoreRequest() async {
  log('Please implement the fetchMoreRequest method in $RequestType');
  return request;
}