savePcmAsWav method

Future<bool> savePcmAsWav(
  1. String filePath
)

Saves the current PCM buffer as a WAV file.

Returns true if successful, false otherwise.

Implementation

Future<bool> savePcmAsWav(String filePath) {
  return MymediaPlatform.instance.savePcmAsWav(filePath);
}