stopNetworkDetection method

FutureOr<int> stopNetworkDetection()

@detail api @author hanchenchen.c @brief Stop pre-call network probe @return - 0: Success. - < 0 : Fail. See ReturnStatus{@link #ReturnStatus} for more details @note - After calling this interface, you will receive an onNetworkDetectionStopped{@link #IRTCEngineEventHandler#onNetworkDetectionStopped} callback to notify the probe to stop.

Implementation

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