addHttpCall method
Handle generic http call. Can be used to any http client.
Implementation
void addHttpCall(ChuckHttpCall ChuckHttpCall) {
assert(ChuckHttpCall.request != null, "Http call request can't be null");
assert(ChuckHttpCall.response != null, "Http call response can't be null");
_ChuckCore.addCall(ChuckHttpCall);
}