useAudioOutputDevice method
Switch the audio output device.
When to call: after using getAudioDeviceList to get the list of audio output devices. Caution: Only for Web.
- viewIDThe viewID obtained from the createCanvasView callback function.
- deviceIDAudio output device ID.
Implementation
Future<void> useAudioOutputDevice(int viewID, String deviceID) async {
  return await ZegoExpressImpl.instance
      .useAudioOutputDevice(viewID, deviceID);
}