muteRoomVideoLocally method

Future<void> muteRoomVideoLocally()

To mute the video of all peers in the room for yourself.

Video from other peers will be stopped for the local peer after invoking muteRoomVideoLocally.

Note: Other peers can still see each other in the room, just you (the local peer) won't see any video from the peers in the room.

Refer muteRoomVideoLocally guide here

Implementation

Future<void> muteRoomVideoLocally() async {
  return await PlatformService.invokeMethod(
      PlatformMethod.muteRoomVideoLocally);
}