setAudioMuted method

Future<MethodResponse> setAudioMuted(
  1. bool muted
)

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

Implementation

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