AwsALBResponse.fromString constructor

AwsALBResponse.fromString(String body, { bool isBase64Encoded, int statusCode, String statusDescription, Map<String, String> headers })

Implementation

factory AwsALBResponse.fromString(
  String body, {
  bool isBase64Encoded,
  int statusCode,
  String statusDescription,
  Map<String, String> headers,
}) {
  return AwsALBResponse(
      body: body,
      headers: headers,
      isBase64Encoded: isBase64Encoded,
      statusCode: statusCode,
      statusDescription: statusDescription);
}