File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/firebase_storage/firebase_storage_web/lib/src/interop Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -141,8 +141,7 @@ class StorageReference
141141 /// Returns a [FullMetadata] from this reference at actual location.
142142 Future <FullMetadata > getMetadata () async {
143143 final data = await storage_interop.getMetadata (jsObject).toDart;
144- return FullMetadata .getInstance (
145- data);
144+ return FullMetadata .getInstance (data);
146145 }
147146
148147 /// List items (files) and prefixes (folders) under this storage reference.
Original file line number Diff line number Diff line change @@ -143,7 +143,8 @@ extension type FullMetadataJsImpl._(JSObject _)
143143}
144144
145145@JS ('UploadMetadata' )
146- extension type UploadMetadataJsImpl ._(JSObject _) implements SettableMetadataJsImpl , JSObject {
146+ extension type UploadMetadataJsImpl ._(JSObject _)
147+ implements SettableMetadataJsImpl , JSObject {
147148 external factory UploadMetadataJsImpl (
148149 {JSString ? md5Hash,
149150 JSString ? cacheControl,
You can’t perform that action at this time.
0 commit comments