toValue method

String toValue()

Implementation

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