unMute method

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

Enable microphone in call with callId

Implementation

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