toStatistic method

Statistic toStatistic()

Implementation

Statistic toStatistic() {
  switch (this) {
    case 'SUM':
      return Statistic.sum;
    case 'MAX':
      return Statistic.max;
    case 'AVG':
      return Statistic.avg;
  }
  throw Exception('$this is not known in enum Statistic');
}