HTTPRequest constructor

HTTPRequest({
  1. String? clientIP,
  2. String? country,
  3. String? hTTPVersion,
  4. List<HTTPHeader>? headers,
  5. String? method,
  6. String? uri,
})

Implementation

HTTPRequest({
  this.clientIP,
  this.country,
  this.hTTPVersion,
  this.headers,
  this.method,
  this.uri,
});