setVideoMuted method

Future<MethodResponse> setVideoMuted(
  1. bool muted
)

Sets the state of the localParticipant video muted according to the muted parameter.

Implementation

Future<MethodResponse> setVideoMuted(bool muted) async {
  return await JitsiMeetPlatform.instance.setVideoMuted(muted);
}