convertToWav method

Future<String> convertToWav(
  1. String inputPath,
  2. String outputPath, {
  3. int? sampleRate,
  4. int? channels,
  5. int? bitDepth,
})

Implementation

Future<String> convertToWav(String inputPath, String outputPath, {int? sampleRate, int? channels, int? bitDepth}) {
  throw UnimplementedError('convertToWav() has not been implemented.');
}