next method

T next(
  1. String? next
)

The next page of results. Use the next token provided by the previous results.

Implementation

T next(String? next) {
  addQueryParameter('next', next);
  return me();
}