Query constructor

Query({
  1. String? maxRows,
  2. String? query,
  3. List<QueryParameter>? queryParameters,
  4. String? timeout,
})

Implementation

Query({
  this.maxRows,
  this.query,
  this.queryParameters,
  this.timeout,
});