onProceeding method

void onProceeding(
  1. int callId,
  2. String response
)

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);
}