LookupLocation constructor

LookupLocation({
  1. String? collectionName,
  2. String? vectorName,
  3. 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;
}