stopSoundLevelMonitor method

Future<void> stopSoundLevelMonitor()

Stops sound level monitoring.

Available since: 1.1.0 Description: After the monitoring is stopped, the callback of the local/remote audio sound level will be stopped. When to call: After the engine is created createEngine. Related APIs: Soundwave monitoring can be initiated via startSoundLevelMonitor.

Implementation

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