RunQueryRequest constructor
RunQueryRequest({
- String? parent,
- StructuredQuery? structuredQuery,
- List<
int> ? transaction, - TransactionOptions? newTransaction,
- 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;
}