toVp8RateControlMode method

Vp8RateControlMode toVp8RateControlMode()

Implementation

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