toMetricType method

MetricType toMetricType()

Implementation

MetricType toMetricType() {
  switch (this) {
    case 'AggregatedRelativeTotalTime':
      return MetricType.aggregatedRelativeTotalTime;
  }
  throw Exception('$this is not known in enum MetricType');
}