onTransferred method
Handle transfer response event raised by library and route it to matched call instance
Implementation
void onTransferred(int callId, int statusCode) {
_logs?.print('onTransferred callId:$callId statusCode:$statusCode');
_findCall(callId)?.onTransferred(statusCode);
}