stopDumpData method
Stop dumping data.
Available since: 3.10.0 Description: Stop dumping 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 startDumpData. Restrictions: None. Caution: It will trigger the onUploadDumpData callback.
Implementation
Future<void> stopDumpData() async {
return await ZegoExpressImpl.instance.stopDumpData();
}