SearchMatrixPoints constructor
SearchMatrixPoints({
- String? collectionName,
- Filter? filter,
- Int64? sample,
- Int64? limit,
- String? using,
- Int64? timeout,
- ReadConsistency? readConsistency,
- ShardKeySelector? shardKeySelector,
Implementation
factory SearchMatrixPoints({
$core.String? collectionName,
Filter? filter,
$fixnum.Int64? sample,
$fixnum.Int64? limit,
$core.String? using,
$fixnum.Int64? timeout,
ReadConsistency? readConsistency,
ShardKeySelector? shardKeySelector,
}) {
final $result = create();
if (collectionName != null) {
$result.collectionName = collectionName;
}
if (filter != null) {
$result.filter = filter;
}
if (sample != null) {
$result.sample = sample;
}
if (limit != null) {
$result.limit = limit;
}
if (using != null) {
$result.using = using;
}
if (timeout != null) {
$result.timeout = timeout;
}
if (readConsistency != null) {
$result.readConsistency = readConsistency;
}
if (shardKeySelector != null) {
$result.shardKeySelector = shardKeySelector;
}
return $result;
}