Response constructor

Response(
  1. int statusCode,
  2. String? statusText,
  3. String? content,
  4. Map<String, String> headers,
)

Create a response

Implementation

Response(this.statusCode, this.statusText, this.content, this.headers);