HttpRequest constructor

HttpRequest({
  1. int? id,
  2. int? createdAt,
  3. String? baseUrl,
  4. String? path,
  5. String? params,
  6. String? method,
  7. String? server,
  8. String? requestHeader,
  9. String? requestBody,
  10. String? client,
  11. bool? secure,
  12. int? requestSize,
  13. int? requestHashCode,
})

Implementation

HttpRequest({
  this.id,
  this.createdAt,
  this.baseUrl,
  this.path,
  this.params,
  this.method,
  this.server,
  this.requestHeader,
  this.requestBody,
  this.client,
  this.secure,
  this.requestSize,
  this.requestHashCode,
});