toggleMute method

  1. @override
Future<void> toggleMute()
override

Toggle Mute and Unmute the microphone

Implementation

@override
Future<void> toggleMute() async {
  try {
    return await methodChannel.invokeMethod<void>("mute");
  } catch (e) {
    throw Exception("$e [Zoom Camera]");
  }
}