toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AacRateControlMode.cbr:
      return 'CBR';
    case AacRateControlMode.vbr:
      return 'VBR';
  }
}