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