toVp9RateControlMode method
Implementation
Vp9RateControlMode toVp9RateControlMode() {
switch (this) {
case 'VBR':
return Vp9RateControlMode.vbr;
}
throw Exception('$this is not known in enum Vp9RateControlMode');
}
Vp9RateControlMode toVp9RateControlMode() {
switch (this) {
case 'VBR':
return Vp9RateControlMode.vbr;
}
throw Exception('$this is not known in enum Vp9RateControlMode');
}