stopNetworkDetection method
@detail api @author hanchenchen.c @brief Stop pre-call network probe @return - 0: Success. - < 0 : Fail. See ByteRTCReturnStatus{@link #ByteRTCReturnStatus} for more details @note - After calling this interface, you will receive an rtcEngine:onNetworkDetectionStopped:{@link #ByteRTCEngineDelegate#rtcEngine:onNetworkDetectionStopped} notification to stop the probe.
Implementation
FutureOr<int> stopNetworkDetection() async {
return await nativeCall('stopNetworkDetection', []);
}