ConvivaHttpClientRequest constructor

ConvivaHttpClientRequest(
  1. HttpClientRequest _httpClientRequest,
  2. int timestamp,
  3. 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;
  });
}