HttpResponse constructor

HttpResponse(
  1. int status, {
  2. String text,
  3. String reason,
  4. Map<String, String> headers,
  5. Stream<List<int>> contentStream,
  6. int contentLength,
})

Implementation

HttpResponse(this.status,
    {this.text,
    this.reason,
    this.headers,
    this.contentStream,
    this.contentLength});