QueryBatchPoints constructor
QueryBatchPoints({
- String? collectionName,
- Iterable<
QueryPoints> ? queryPoints, - ReadConsistency? readConsistency,
- Int64? timeout,
Implementation
factory QueryBatchPoints({
$core.String? collectionName,
$core.Iterable<QueryPoints>? queryPoints,
ReadConsistency? readConsistency,
$fixnum.Int64? timeout,
}) {
final $result = create();
if (collectionName != null) {
$result.collectionName = collectionName;
}
if (queryPoints != null) {
$result.queryPoints.addAll(queryPoints);
}
if (readConsistency != null) {
$result.readConsistency = readConsistency;
}
if (timeout != null) {
$result.timeout = timeout;
}
return $result;
}