toRateKey method

RateKey toRateKey()

Implementation

RateKey toRateKey() {
  switch (this) {
    case 'IP':
      return RateKey.ip;
  }
  throw Exception('$this is not known in enum RateKey');
}