You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Existing model's function 'CallModel::sendDtmf(String tone)'
internally invokes library's function: SiprixVoipSdk::sendDtmf(int callId, String tones, int durationMs, int intertoneGapMs, **[int method = kDtmfMethodRtp]**)
where as method app can set one of: kDtmfMethodRtp or kDtmfMethodInfo
Currently you can replace: widget.myCall.sendDtmf(tone)
with SiprixVoipSdk().sendDtmf(widget.myCall.myCallId, tone, 200, 50, SiprixVoipSdk.kDtmfMethodInfo);
In next builds we'll update 'CallModel::sendDtmf' with ability to specify more argument.
How can I send dtmf code with info mode or auto?
The text was updated successfully, but these errors were encountered: