newInvite method
void
newInvite(})
Creates an invitation to send to a destinationNumber
or SIP Destination
using the provided callerName
, callerNumber
and a clientState
Implementation
void newInvite(String callerName, String callerNumber,
String destinationNumber, String clientState,
{Map<String, String> customHeaders = const {}}) {
_txClient.newInvite(
callerName, callerNumber, destinationNumber, clientState,
customHeaders: customHeaders);
}