acceptCall method
Accepts the incoming call specified via the invite
parameter, sending
your local specified callerName
, callerNumber
and clientState
Implementation
Call acceptCall(
IncomingInviteParams invite,
String callerName,
String callerNumber,
String clientState, {
bool isAttach = false,
Map<String, String> customHeaders = const {},
}) {
return _txClient.acceptCall(
invite,
callerName,
callerNumber,
clientState,
customHeaders: customHeaders,
isAttach: isAttach,
);
}