buildGetNextPageParameters method

  1. @override
ListChildUsers buildGetNextPageParameters(
  1. List<User>? currentPageItems,
  2. {int? pageSize}
)

Builds the ListParametersType-type parameter set to use to retrieve the next page of a PaginatedCollection. This method should be overridden by subclasses to provide the appropriate parameters for the next page request.

Implementation

@override
ListChildUsers buildGetNextPageParameters(List<User>? currentPageItems,
    {int? pageSize}) {
  ListChildUsers parameters = filters ?? ListChildUsers();

  // Child users go oldest to newest, so only can use afterId
  parameters.afterId = currentPageItems?.last.id;

  if (pageSize != null) {
    parameters.pageSize = pageSize;
  }

  return parameters;
}