mute method

Future<void> mute()

Disable microphone

Implementation

Future<void> mute() async {
  CallPlatform.instance.mute(callId: id ?? "");
}