aggregateLabel method
Resolves a localized label for a summary aggregate.
Implementation
String aggregateLabel(FdcAggregate aggregate) {
return switch (aggregate) {
FdcAggregate.sum => aggregateSum,
FdcAggregate.min => aggregateMin,
FdcAggregate.max => aggregateMax,
FdcAggregate.avg => aggregateAvg,
};
}