toVp8QualityTuningLevel method

Vp8QualityTuningLevel toVp8QualityTuningLevel()

Implementation

Vp8QualityTuningLevel toVp8QualityTuningLevel() {
  switch (this) {
    case 'MULTI_PASS':
      return Vp8QualityTuningLevel.multiPass;
    case 'MULTI_PASS_HQ':
      return Vp8QualityTuningLevel.multiPassHq;
  }
  throw Exception('$this is not known in enum Vp8QualityTuningLevel');
}