Object constructor

Object(
  1. String? eTag,
  2. String? key,
  3. DateTime? lastModified,
  4. Owner? owner,
  5. int? size,
  6. String? storageClass,
)

Implementation

Object(
  this.eTag,
  this.key,
  this.lastModified,
  this.owner,
  this.size,
  this.storageClass,
);