saveWAVE static method
Implementation
static Future<bool> saveWAVE(String srcPath, String destPath,
{int channel = 1, int fmt = 16, int rate = 8000}) async {
return await app_player_channel.invokeMethod(
"app_player_save_wave", [srcPath, destPath, channel, fmt, rate]);
}