S3ObjectMetadata constructor

S3ObjectMetadata({
  1. String? cacheControl,
  2. String? contentDisposition,
  3. String? contentEncoding,
  4. String? contentLanguage,
  5. int? contentLength,
  6. String? contentMD5,
  7. String? contentType,
  8. DateTime? httpExpiresDate,
  9. bool? requesterCharged,
  10. S3SSEAlgorithm? sSEAlgorithm,
  11. Map<String, String>? userMetadata,
})

Implementation

S3ObjectMetadata({
  this.cacheControl,
  this.contentDisposition,
  this.contentEncoding,
  this.contentLanguage,
  this.contentLength,
  this.contentMD5,
  this.contentType,
  this.httpExpiresDate,
  this.requesterCharged,
  this.sSEAlgorithm,
  this.userMetadata,
});