NetworkLoggerHttpClientResponse constructor

NetworkLoggerHttpClientResponse(
  1. HttpClientResponse _inner,
  2. String requestID,
  3. String originalUrl,
  4. String originalMethod,
  5. int timestamp,
  6. String requestbody,
  7. Map<String, String> requestHeaders,
)

Implementation

NetworkLoggerHttpClientResponse(
    this._inner,
    this.requestID,
    this.originalUrl,
    this.originalMethod,
    this.timestamp,
    this.requestbody,
    this.requestHeaders) {
  _wrapperStream = _readAndRecreateStream(_inner);
}