dispatchCall method

  1. @override
void dispatchCall(
  1. ClientCall call
)

Put call on the queue to be dispatched when the connection is ready.

Implementation

@override
void dispatchCall(grpc.ClientCall call) {
  call.onConnectionReady(this);
  log('bicronet_grpc: CronetGrpcClientConnection dispatchCall $call');
}