toMsSmoothAudioDeduplication method
Implementation
MsSmoothAudioDeduplication toMsSmoothAudioDeduplication() {
switch (this) {
case 'COMBINE_DUPLICATE_STREAMS':
return MsSmoothAudioDeduplication.combineDuplicateStreams;
case 'NONE':
return MsSmoothAudioDeduplication.none;
}
throw Exception('$this is not known in enum MsSmoothAudioDeduplication');
}