toWavFormat method
Implementation
WavFormat toWavFormat() {
switch (this) {
case 'RIFF':
return WavFormat.riff;
case 'RF64':
return WavFormat.rf64;
}
throw Exception('$this is not known in enum WavFormat');
}
WavFormat toWavFormat() {
switch (this) {
case 'RIFF':
return WavFormat.riff;
case 'RF64':
return WavFormat.rf64;
}
throw Exception('$this is not known in enum WavFormat');
}