SearchContinuation constructor

SearchContinuation({
  1. PageIndex? page,
  2. Iterable<String>? orderBy,
  3. StringValue? token,
})

Implementation

factory SearchContinuation({
  $2.PageIndex? page,
  $core.Iterable<$core.String>? orderBy,
  $3.StringValue? token,
}) {
  final result = create();
  if (page != null) result.page = page;
  if (orderBy != null) result.orderBy.addAll(orderBy);
  if (token != null) result.token = token;
  return result;
}