QueryResponse constructor

QueryResponse({
  1. bool? cacheHit,
  2. DmlStatistics? dmlStats,
  3. List<ErrorProto>? errors,
  4. bool? jobComplete,
  5. JobCreationReason? jobCreationReason,
  6. JobReference? jobReference,
  7. String? kind,
  8. String? numDmlAffectedRows,
  9. String? pageToken,
  10. String? queryId,
  11. List<TableRow>? rows,
  12. TableSchema? schema,
  13. SessionInfo? sessionInfo,
  14. String? totalBytesProcessed,
  15. String? totalRows,
})

Implementation

QueryResponse({
  this.cacheHit,
  this.dmlStats,
  this.errors,
  this.jobComplete,
  this.jobCreationReason,
  this.jobReference,
  this.kind,
  this.numDmlAffectedRows,
  this.pageToken,
  this.queryId,
  this.rows,
  this.schema,
  this.sessionInfo,
  this.totalBytesProcessed,
  this.totalRows,
});