stopAudioDeviceVolumeMonitor method

Future<void> stopAudioDeviceVolumeMonitor(
  1. ZegoAudioDeviceType deviceType,
  2. String deviceID
)

Turn off audio device volume monitoring. Only for Windows/macOS.

Available since: 1.1.0 Description: Stops the audio device volume monitor. When to call: After creating the engine via createEngine, and when you no longer need to monitor the device volume. Platform differences: Only supports Windows and macOS.

Implementation

Future<void> stopAudioDeviceVolumeMonitor(
    ZegoAudioDeviceType deviceType, String deviceID) async {
  return await ZegoExpressImpl.instance
      .stopAudioDeviceVolumeMonitor(deviceType, deviceID);
}