next method

  1. @override
Future<List<User>> next()
override

Gets the list of next items.

Implementation

@override
Future<List<User>> next() async {
  sbLog.i(StackTrace.current);

  if (isLoading) throw QueryInProgressException();
  if (!hasNext) return [];

  isLoading = true;

  final res = await chat.apiClient.send<OperatorListQueryResponse>(
    OperatorListRequest(
      chat,
      limit: limit,
      token: token,
      channelType: channelType,
      channelUrl: channelUrl,
    ),
  );

  isLoading = false;
  token = res.next;
  hasNext = res.next != '';
  return res.operators;
}