StorageItem constructor

const StorageItem({
  1. required String path,
  2. int? size,
  3. DateTime? lastModified,
  4. String? eTag,
  5. Map<String, String> metadata = const <String, String>{},
})

Presents a storage object.

Implementation

const StorageItem({
  required this.path,
  this.size,
  this.lastModified,
  this.eTag,
  this.metadata = const <String, String>{},
});