SesHttpResponse constructor

SesHttpResponse(
  1. int statusCode,
  2. String body,
  3. Map<String, String> headers
)

Creates an SES HTTP response wrapper.

Example:

final response = SesHttpResponse(200, 'ok', {});

Implementation

SesHttpResponse(this.statusCode, this.body, this.headers);