ConvivaHttpClientRequest constructor
ConvivaHttpClientRequest(
- HttpClientRequest _httpClientRequest,
- int timestamp,
- Map<
String, dynamic> ? configInfo
Implementation
ConvivaHttpClientRequest(
this._httpClientRequest, this.timestamp, this.configInfo) {
var request = this;
isRQBCollectionEnabled = configInfo?["isRQBCollectionEnabled"] == true;
request.done.then((value) {
//processResponse(value, request, timestamp);
}, onError: (dynamic err) {
_processConvivaNetworkEvent(
_httpClientRequest, null, 0, 0, err.toString());
throw err;
});
}