AggregateResult constructor

const AggregateResult({
  1. required String fieldName,
  2. required Aggregations aggregation,
  3. required String? result,
})

Implementation

const AggregateResult({
  required this.fieldName,
  required this.aggregation,
  required this.result,
});