nextParams property

PageParams nextParams

returns the next page params

Implementation

PageParams get nextParams => PageParams(
      currentPage: _currentPage + 1,
      perPage: _perPage,
      lastPage: _lastPage,
      total: _total,
    );