LookupLocation constructor
LookupLocation({
- String? collectionName,
- String? vectorName,
- ShardKeySelector? shardKeySelector,
Implementation
factory LookupLocation({
$core.String? collectionName,
$core.String? vectorName,
ShardKeySelector? shardKeySelector,
}) {
final $result = create();
if (collectionName != null) {
$result.collectionName = collectionName;
}
if (vectorName != null) {
$result.vectorName = vectorName;
}
if (shardKeySelector != null) {
$result.shardKeySelector = shardKeySelector;
}
return $result;
}