convertToWav method

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

Implementation

@override
Future<String> convertToWav(String inputPath, String outputPath, {int? sampleRate, int? channels, int? bitDepth}) {
  throw UnsupportedError('File-based operations are not supported on web. Use convertToWavBytes instead.');
}