telnyxCallControlId property
The Telnyx Call Control ID for this call.
This field is available for outbound flows (parked & bridged) and can be
used to identify the call in the Telnyx Call Control API. It is populated
when a telnyx_rtc.answer event is received with a telnyx_call_control_id
in the params.
Example usage:
// Access the call control ID after the call is answered
if (call.telnyxCallControlId != null) {
print('Call Control ID: ${call.telnyxCallControlId}');
}
Implementation
String? telnyxCallControlId;