clearAudioRecord static method

void clearAudioRecord()

清除所有用户录音的.wav文件

Implementation

static void clearAudioRecord() async {
  try {
    //result.success(any)
    bool? result = await Configure.channel.invokeMethod('clearAudioRecord');
  } on PlatformException catch (e) {
    // result.error("failed", "failed unknow", "i don't know")
    print(e);
  } on MissingPluginException catch (e) {
    //result.notImplemented()
    print(e);
  }
}