GetObjectResponse constructor

GetObjectResponse({
  1. required int statusCode,
  2. Uint8List? body,
  3. String? cacheControl,
  4. int? contentLength,
  5. String? contentRange,
  6. String? contentType,
  7. String? eTag,
  8. DateTime? lastModified,
})

Implementation

GetObjectResponse({
  required this.statusCode,
  this.body,
  this.cacheControl,
  this.contentLength,
  this.contentRange,
  this.contentType,
  this.eTag,
  this.lastModified,
});