HttpResponse constructor

const HttpResponse({
  1. String? version,
  2. String? status,
  3. String? reason,
  4. Map<String, List<String>> headers = const {},
})

Implementation

const HttpResponse({
  this.version,
  this.status,
  this.reason,
  this.headers = const {},
});