toVp9RateControlMode method

Vp9RateControlMode toVp9RateControlMode()

Implementation

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