RunQueryRequest constructor

RunQueryRequest({
  1. String? parent,
  2. StructuredQuery? structuredQuery,
  3. List<int>? transaction,
  4. TransactionOptions? newTransaction,
  5. Timestamp? readTime,
})

Implementation

factory RunQueryRequest({
  $core.String? parent,
  $6.StructuredQuery? structuredQuery,
  $core.List<$core.int>? transaction,
  $3.TransactionOptions? newTransaction,
  $4.Timestamp? readTime,
}) {
  final $result = create();
  if (parent != null) {
    $result.parent = parent;
  }
  if (structuredQuery != null) {
    $result.structuredQuery = structuredQuery;
  }
  if (transaction != null) {
    $result.transaction = transaction;
  }
  if (newTransaction != null) {
    $result.newTransaction = newTransaction;
  }
  if (readTime != null) {
    $result.readTime = readTime;
  }
  return $result;
}