QueryStatistics constructor

QueryStatistics({
  1. double? bytesScanned,
  2. double? recordsMatched,
  3. double? recordsScanned,
})

Implementation

QueryStatistics({
  this.bytesScanned,
  this.recordsMatched,
  this.recordsScanned,
});