CharlatanHttpResponse constructor

CharlatanHttpResponse({
  1. Object? body,
  2. int statusCode = 200,
  3. Map<String, String> headers = const {},
})

A type representing a HTTP response.

Implementation

CharlatanHttpResponse({
  this.body,
  this.statusCode = 200,
  this.headers = const {},
});