stopNetworkSpeedTest method

Future<void> stopNetworkSpeedTest()

Stop network speed test.

Available since: 1.20.0 Description: Stop network speed test. Use cases: This function can be used to detect whether the network environment is suitable for pushing/pulling streams with specified bitrates. When to call: It needs to be called after createEngine. Restrictions: None. Caution: After the network speed test stopped, onNetworkSpeedTestQualityUpdate callback will not be triggered. Related APIs: Call startNetworkSpeedTest to start network speed test.

Implementation

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