stopNetworkDetection method

FutureOr<int> stopNetworkDetection()

@detail api @author hanchenchen.c @brief 停止通话前网络探测 @return - 0: 调用成功。 - < 0 : 调用失败。查看 ByteRTCReturnStatus{@link #ByteRTCReturnStatus} 获得更多错误说明 @note 调用本接口后,会收到一次 rtcEngine:onNetworkDetectionStopped:{@link #ByteRTCEngineDelegate#rtcEngine:onNetworkDetectionStopped} 通知探测停止。

Implementation

FutureOr<int> stopNetworkDetection() async {
  return await nativeCall('stopNetworkDetection', []);
}