mute method

  1. @override
Future<void> mute({
  1. required String callId,
})
override

Disable microphone in call with callId

Implementation

@override
Future<void> mute({required String callId}) async {
  return await methodChannel
      .invokeMethod('mute', {"callId": callId, "setMuted": true});
}