toDolbyVisionLevel6Mode method
Implementation
DolbyVisionLevel6Mode toDolbyVisionLevel6Mode() {
switch (this) {
case 'PASSTHROUGH':
return DolbyVisionLevel6Mode.passthrough;
case 'RECALCULATE':
return DolbyVisionLevel6Mode.recalculate;
case 'SPECIFY':
return DolbyVisionLevel6Mode.specify;
}
throw Exception('$this is not known in enum DolbyVisionLevel6Mode');
}