Volsavr
Volsavr
Seems we found an issue in case of using WSS transport. In that case 'Contact' header contains 'ws' value instead of 'wss'. ```Contact: ``` It leads to call issue: 'Failed...
Allows to set custom from_uri & from_display_name for call operation using customOptions parameter. ``` Future initiateCall(String target) async { Map customOptions = {}; var currentCallerId = '186455555' customOptions['from_uri'] = URI('sip',...
Implemented a few options related to microphone ``` if (_avAudioSession != null) { var gainValue = mute? 0.00001 : 1.0; var result = await _avAudioSession?.setInputGain(gainValue); _logger.log(LogLevel.debug, "AudioManager", "New InputGain state:...