toWavFormat method

WavFormat toWavFormat()

Implementation

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