setDefaultMuteAllRemoteVideoStreams abstract method
Stops or resumes subscribing to the video 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 video streams of remote users in the channel, do the following: If you need to resume subscribing to a single user, call muteRemoteVideoStream (false) and specify the ID of the remote user you want to subscribe to. If you want to resume subscribing to multiple users, call muteRemoteVideoStream(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) Resume subscribing to the audio streams of all remote users by default.
Implementation
@Deprecated('')
Future<void> setDefaultMuteAllRemoteVideoStreams(bool muted);