HttpResponse constructor

HttpResponse([
  1. String body = "",
  2. int status = 200
])

Implementation

HttpResponse([this.body = "", this.status = 200]) {
  headers = {};
}