StoredObject constructor

const StoredObject({
  1. required String key,
  2. required int sizeBytes,
  3. String? sha256,
  4. String? contentType,
  5. DateTime? modifiedAt,
  6. String? etag,
})

Creates object metadata.

Implementation

const StoredObject({
  required this.key,
  required this.sizeBytes,
  this.sha256,
  this.contentType,
  this.modifiedAt,
  this.etag,
});