requestPreviousPage method

Future<JSONPaging?> requestPreviousPage()

Requests the previous page. If isFirstPage returns this.

Implementation

Future<JSONPaging?> requestPreviousPage() async {
  if (isFirstPage) return this;
  return requestPage(previousPage);
}