S3HttpResponse constructor
S3HttpResponse(
- int statusCode,
- Uint8List body,
- 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);