setDefaultMuteAllRemoteAudioStreams abstract method

  1. @Deprecated('')
Future<void> setDefaultMuteAllRemoteAudioStreams(
  1. bool muted
)

Stops or resumes subscribing to the audio streams of all remote users by default. Call this method after joining a channel. After successfully calling this method, the local user stops or resumes subscribing to the audio streams of all subsequent users. Deprecated: This method is deprecated. If you need to resume subscribing to the audio streams of remote users in the channel after calling this method, do the following: If you need to resume subscribing to the audio stream of a specified user, call muteRemoteAudioStream (false), and specify the user ID. If you need to resume subscribing to the audio streams of multiple remote users, call muteRemoteAudioStream (false) multiple times.

Param muted Whether to stop subscribing to the audio streams of all remote users by default. true: Stop subscribing to the audio streams of all remote users by default. false: (Default) Subscribe to the audio streams of all remote users by default.

Implementation

@Deprecated('')
Future<void> setDefaultMuteAllRemoteAudioStreams(bool muted);