Aggregation constructor

Aggregation({
  1. AggregationCount? count,
  2. String? field,
  3. AggregationFrequency? frequency,
  4. AggregationHistogram? histogram,
  5. AggregationSum? sum,
})

Implementation

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