toNielsenPcmToId3TaggingState method
Implementation
NielsenPcmToId3TaggingState toNielsenPcmToId3TaggingState() {
switch (this) {
case 'DISABLED':
return NielsenPcmToId3TaggingState.disabled;
case 'ENABLED':
return NielsenPcmToId3TaggingState.enabled;
}
throw Exception('$this is not known in enum NielsenPcmToId3TaggingState');
}