RunAggregationQueryResponse constructor
RunAggregationQueryResponse({
- AggregationResult? result,
- List<
int> ? transaction, - Timestamp? readTime,
Implementation
factory RunAggregationQueryResponse({
$7.AggregationResult? result,
$core.List<$core.int>? transaction,
$4.Timestamp? readTime,
}) {
final $result = create();
if (result != null) {
$result.result = result;
}
if (transaction != null) {
$result.transaction = transaction;
}
if (readTime != null) {
$result.readTime = readTime;
}
return $result;
}