StorageRefModel constructor

const StorageRefModel({
  1. required String? bucketId,
  2. required String ref,
  3. String? type = EntityType.file,
})

Implementation

const StorageRefModel({
  required this.bucketId,
  required this.ref,
  this.type = EntityType.file,
});