HttpRequestContext constructor

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

Implementation

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