Request constructor

Request({
  1. Auth? auth,
  2. Map<String, String>? headers,
  3. String? host,
  4. String? id,
  5. String? method,
  6. String? path,
  7. String? protocol,
  8. String? query,
  9. String? reason,
  10. String? scheme,
  11. String? size,
  12. String? time,
})

Implementation

Request({
  this.auth,
  this.headers,
  this.host,
  this.id,
  this.method,
  this.path,
  this.protocol,
  this.query,
  this.reason,
  this.scheme,
  this.size,
  this.time,
});