Http constructor

Http({
  1. String? clientIp,
  2. String? httpMethod,
  3. int? httpStatus,
  4. String? httpURL,
  5. String? userAgent,
})

Implementation

Http({
  this.clientIp,
  this.httpMethod,
  this.httpStatus,
  this.httpURL,
  this.userAgent,
});