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