savePcmAsWav method
Saves the current PCM buffer as a WAV file.
Implementation
@override
Future<bool> savePcmAsWav(String filePath) async {
final result = await methodChannel.invokeMethod<bool>('savePcmAsWav', {
'filePath': filePath,
});
return result ?? false;
}