HttpRequest constructor

HttpRequest({
  1. String? cacheFillBytes,
  2. bool? cacheHit,
  3. bool? cacheLookup,
  4. bool? cacheValidatedWithOriginServer,
  5. String? latency,
  6. String? protocol,
  7. String? referer,
  8. String? remoteIp,
  9. String? requestMethod,
  10. String? requestSize,
  11. String? requestUrl,
  12. String? responseSize,
  13. String? serverIp,
  14. int? status,
  15. String? userAgent,
})

Implementation

HttpRequest({
  this.cacheFillBytes,
  this.cacheHit,
  this.cacheLookup,
  this.cacheValidatedWithOriginServer,
  this.latency,
  this.protocol,
  this.referer,
  this.remoteIp,
  this.requestMethod,
  this.requestSize,
  this.requestUrl,
  this.responseSize,
  this.serverIp,
  this.status,
  this.userAgent,
});