toAudioNormalizationLoudnessLogging method
Implementation
AudioNormalizationLoudnessLogging toAudioNormalizationLoudnessLogging() {
switch (this) {
case 'LOG':
return AudioNormalizationLoudnessLogging.log;
case 'DONT_LOG':
return AudioNormalizationLoudnessLogging.dontLog;
}
throw Exception(
'$this is not known in enum AudioNormalizationLoudnessLogging');
}