requestNextPage method

Future<JSONPaging?> requestNextPage()

Requests next page. If isLastPage returns this.

Implementation

Future<JSONPaging?> requestNextPage() async {
  if (isLastPage) return this;
  return requestPage(nextPage);
}