Response constructor

Response(
  1. int status,
  2. List<MapEntry<String, String>> headers,
  3. String? body
)

Implementation

Response(this.status, this.headers, this.body);