()
| 303 | } |
| 304 | |
| 305 | get customMetadata(): { [key: string]: string } { |
| 306 | const meta = org.nativescript.firebase.storage.FirebaseStorage.StorageMetadata.getCustomMetadata(this.native); |
| 307 | let result = {}; |
| 308 | try { |
| 309 | result = JSON.parse(meta); |
| 310 | } catch (e) {} |
| 311 | return result; |
| 312 | } |
| 313 | |
| 314 | set customMetadata(value) { |
| 315 | if (!this._builder) { |
nothing calls this directly
no test coverage detected