muteAllRemoteAudio method
- bool mute
暂停/恢复播放所有远端用户的音频流
参数:
mute
true
:静音;false
:取消静音
注意:当所有用户被静音时,系统将停止接收和播放所有用户的远程音频流。当所有用户取消静音时,系统将自动拉取并播放所有用户的远程音频流。
Implementation
Future<void> muteAllRemoteAudio(bool mute // true: muted; false: not muted
) {
return _cloudChannel.invokeMethod('muteAllRemoteAudio', {
"mute": mute,
});
}