HttpRequestContext constructor

HttpRequestContext({
  1. String? method,
  2. String? referrer,
  3. String? remoteIp,
  4. int? responseStatusCode,
  5. String? url,
  6. String? userAgent,
})

Implementation

HttpRequestContext({
  this.method,
  this.referrer,
  this.remoteIp,
  this.responseStatusCode,
  this.url,
  this.userAgent,
});