WebRTC Flutter Call
Reference for the Call class in the Telnyx Flutter Voice SDK — accept incoming calls, decline, hold, mute, send DTMF, and read state from this object.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check out our upcoming events and meetups! View events →
Reference for the Call class in the Telnyx Flutter Voice SDK — accept incoming calls, decline, hold, mute, send DTMF, and read state from this object.
_telnyxClient.call.acceptCall(_incomingInvite?.callID);
if (_ongoingCall) {
_telnyxClient.call.endCall(_telnyxClient.call.callId);
} else {
_telnyxClient.createCall().endCall(_incomingInvite?.callID);
}
_telnyxClient.call.dtmf(_telnyxClient.call.callId, tone);
_telnyxClient.call.onMuteUnmutePressed();
_telnyxClient.call.enableSpeakerPhone(true);
_telnyxClient.call.onHoldUnholdPressed();
Was this page helpful?