uploadDumpData method

Future<void> uploadDumpData()

Upload dumped data to the ZEGO server.

Available since: 3.10.0 Description: Upload dumped data to the ZEGO server. 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. Restrictions: None. Caution: It will trigger the onUploadDumpData callback when dump data uploaded.

Implementation

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