QueryResponse constructor

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

Implementation

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