(value: FIRStorageReference)
| 352 | _native: FIRStorageReference; |
| 353 | |
| 354 | static fromNative(value: FIRStorageReference) { |
| 355 | if (value instanceof FIRStorageReference) { |
| 356 | const ref = new Reference(); |
| 357 | ref._native = value; |
| 358 | return ref; |
| 359 | } |
| 360 | return null; |
| 361 | } |
| 362 | |
| 363 | get native() { |
| 364 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected