AggregationResult constructor

AggregationResult({
  1. AggregationResultCount? count,
  2. String? field,
  3. AggregationResultFrequency? frequency,
  4. AggregationResultHistogram? histogram,
  5. AggregationResultSum? sum,
})

Implementation

AggregationResult({
  this.count,
  this.field,
  this.frequency,
  this.histogram,
  this.sum,
});