toMp3RateControlMode method

Mp3RateControlMode toMp3RateControlMode()

Implementation

Mp3RateControlMode toMp3RateControlMode() {
  switch (this) {
    case 'CBR':
      return Mp3RateControlMode.cbr;
    case 'VBR':
      return Mp3RateControlMode.vbr;
  }
  throw Exception('$this is not known in enum Mp3RateControlMode');
}