S3HttpResponse constructor

S3HttpResponse(
  1. int statusCode,
  2. Uint8List body,
  3. HttpHeaders headers
)

Creates a raw S3 HTTP response wrapper.

Example:

final response = S3HttpResponse(204, Uint8List(0), headers);

Implementation

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