unMuteRoomVideoLocally method

Future<void> unMuteRoomVideoLocally()

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

Video from other peers will be displayed for the local peer after invoking unMuteRoomVideoLocally if they were previously muted using muteRoomVideoLocally.

Refer unMuteRoomVideoLocally guide here

Implementation

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