removeDumpData method

Future<void> removeDumpData()

Remove dumped data.

Available since: 3.10.0 Description: Remove dumped data. Use cases: This is a debugging tool. When there is a problem with audio capturing, 3A processing, or other environment processing during publish, you can dump the audio data and upload it to the ZEGO server for further analysis. When to call: It needs to be called after stopDumpData. If the dump data is to be uploaded to the ZEGO server, it should be deleted after the upload is successful. Restrictions: None.

Implementation

Future<void> removeDumpData() async {
  return await ZegoExpressImpl.instance.removeDumpData();
}