ExecuteHttpRequestResponse constructor

ExecuteHttpRequestResponse({
  1. String? body,
  2. List<HttpHeader>? headers,
  3. String? reason,
  4. int? statusCode,
})

Implementation

ExecuteHttpRequestResponse({
  this.body,
  this.headers,
  this.reason,
  this.statusCode,
});