QueryInterpretation constructor

QueryInterpretation({
  1. String? interpretationType,
  2. String? interpretedQuery,
  3. int? interpretedQueryActualResultCount,
  4. String? interpretedQueryEstimatedResultCount,
  5. String? reason,
})

Implementation

QueryInterpretation({
  this.interpretationType,
  this.interpretedQuery,
  this.interpretedQueryActualResultCount,
  this.interpretedQueryEstimatedResultCount,
  this.reason,
});