QueryOptions constructor

const QueryOptions({
  1. Object? parameters,
  2. QueryScanConsistency? scanConsistency,
  3. MutationState? consistentWith,
  4. bool adhoc = true,
  5. bool flexIndex = false,
  6. bool preserveExpiry = false,
  7. String? clientContextId,
  8. int? maxParallelism,
  9. int? pipelineBatch,
  10. int? pipelineCap,
  11. Duration? scanWait,
  12. int? scanCap,
  13. bool readOnly = false,
  14. QueryProfileMode profile = QueryProfileMode.off,
  15. bool metrics = false,
  16. String? queryContext,
  17. Map<String, Object?>? raw,
  18. Duration? timeout,
})

Implementation

const QueryOptions({
  this.parameters,
  this.scanConsistency,
  this.consistentWith,
  this.adhoc = true,
  this.flexIndex = false,
  this.preserveExpiry = false,
  this.clientContextId,
  this.maxParallelism,
  this.pipelineBatch,
  this.pipelineCap,
  this.scanWait,
  this.scanCap,
  this.readOnly = false,
  this.profile = QueryProfileMode.off,
  this.metrics = false,
  this.queryContext,
  this.raw,
  super.timeout,
});