SearchContinuation constructor
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;
}