Aggregation constructor

Aggregation({
  1. String? alias,
  2. Avg? avg,
  3. Count? count,
  4. Sum? sum,
})

Implementation

Aggregation({this.alias, this.avg, this.count, this.sum});