toVp9QualityTuningLevel method

Vp9QualityTuningLevel toVp9QualityTuningLevel()

Implementation

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