toUnit method

Unit toUnit()

Implementation

Unit toUnit() {
  switch (this) {
    case 'SECONDS':
      return Unit.seconds;
    case 'COUNT':
      return Unit.count;
    case 'PERCENT':
      return Unit.percent;
  }
  throw Exception('$this is not known in enum Unit');
}