closeMicrophone method

Future<void> closeMicrophone([
  1. bool notify = true
])

Implementation

Future<void> closeMicrophone([bool notify = true]) async {
  CallKitUILog.i(_tag, 'closeMicrophone notify = $notify');
  NECallEngine.instance.muteLocalAudio(true);
  CallState.instance.isMicrophoneMute = true;
  _syncCallStateToNative();
}