QueryRequest constructor

QueryRequest({
  1. List<ConnectionProperty>? connectionProperties,
  2. bool? continuous,
  3. bool? createSession,
  4. DatasetReference? defaultDataset,
  5. bool? dryRun,
  6. DataFormatOptions? formatOptions,
  7. String? jobCreationMode,
  8. String? kind,
  9. Map<String, String>? labels,
  10. String? location,
  11. int? maxResults,
  12. String? maximumBytesBilled,
  13. String? parameterMode,
  14. bool? preserveNulls,
  15. String? query,
  16. List<QueryParameter>? queryParameters,
  17. String? requestId,
  18. int? timeoutMs,
  19. bool? useLegacySql,
  20. bool? useQueryCache,
})

Implementation

QueryRequest({
  this.connectionProperties,
  this.continuous,
  this.createSession,
  this.defaultDataset,
  this.dryRun,
  this.formatOptions,
  this.jobCreationMode,
  this.kind,
  this.labels,
  this.location,
  this.maxResults,
  this.maximumBytesBilled,
  this.parameterMode,
  this.preserveNulls,
  this.query,
  this.queryParameters,
  this.requestId,
  this.timeoutMs,
  this.useLegacySql,
  this.useQueryCache,
});