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