toEac3AtmosDynamicRangeCompressionLine method
Implementation
Eac3AtmosDynamicRangeCompressionLine
toEac3AtmosDynamicRangeCompressionLine() {
switch (this) {
case 'NONE':
return Eac3AtmosDynamicRangeCompressionLine.none;
case 'FILM_STANDARD':
return Eac3AtmosDynamicRangeCompressionLine.filmStandard;
case 'FILM_LIGHT':
return Eac3AtmosDynamicRangeCompressionLine.filmLight;
case 'MUSIC_STANDARD':
return Eac3AtmosDynamicRangeCompressionLine.musicStandard;
case 'MUSIC_LIGHT':
return Eac3AtmosDynamicRangeCompressionLine.musicLight;
case 'SPEECH':
return Eac3AtmosDynamicRangeCompressionLine.speech;
}
throw Exception(
'$this is not known in enum Eac3AtmosDynamicRangeCompressionLine');
}