ForwardedResponseDetails constructor

const ForwardedResponseDetails({
  1. required String body,
  2. required List<ForwardedRequestHeader> headers,
  3. required int status,
})

ForwardedResponseDetails

Details about the response from the destination endpoint.

Implementation

const ForwardedResponseDetails({
  required this.body,
  required this.headers,
  required this.status,
});