SearchMatrixPoints constructor

SearchMatrixPoints({
  1. String? collectionName,
  2. Filter? filter,
  3. Int64? sample,
  4. Int64? limit,
  5. String? using,
  6. Int64? timeout,
  7. ReadConsistency? readConsistency,
  8. 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;
}