HttpRequest constructor

const HttpRequest({
  1. String? version,
  2. String? method,
  3. List<String> path = const ['/'],
  4. Map<String, List<String>> headers = const {},
})

Implementation

const HttpRequest({
  this.version,
  this.method,
  this.path = const ['/'],
  this.headers = const {},
});