toAc3DynamicRangeCompressionProfile method
Implementation
Ac3DynamicRangeCompressionProfile toAc3DynamicRangeCompressionProfile() {
switch (this) {
case 'FILM_STANDARD':
return Ac3DynamicRangeCompressionProfile.filmStandard;
case 'NONE':
return Ac3DynamicRangeCompressionProfile.none;
}
throw Exception(
'$this is not known in enum Ac3DynamicRangeCompressionProfile');
}