muteAllRemoteVideoStreams method

  1. @override
Future<void> muteAllRemoteVideoStreams(
  1. bool muted
)

Stops/Resumes receiving all remote video streams.

Parameter muted Sets whether to receive/stop receiving all remote video streams:

  • true: Stop receiving all remote video streams.
  • false: (Default) Receive all remote video streams.

Implementation

@override
Future<void> muteAllRemoteVideoStreams(bool muted) {
  return _invokeMethod('muteAllRemoteVideoStreams', {
    'muted': muted,
  });
}