RunAggregationQueryResponse constructor

RunAggregationQueryResponse({
  1. AggregationResult? result,
  2. List<int>? transaction,
  3. 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;
}