stopNetworkDetection method
@detail api @author hanchenchen.c @brief 停止通话前网络探测 @return - 0: 调用成功。 - < 0 : 调用失败。查看 ReturnStatus{@link #ReturnStatus} 获得更多错误说明 @note - 调用本接口后,会收到一次 onNetworkDetectionStopped{@link #IRTCEngineEventHandler#onNetworkDetectionStopped} 回调通知探测停止。
Implementation
FutureOr<int> stopNetworkDetection() async {
return await nativeCall('stopNetworkDetection', []);
}