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