(ref: any)
| 350 | _native: any; |
| 351 | |
| 352 | static fromNative(ref: any) { |
| 353 | if (ref instanceof FIRDatabaseReference) { |
| 354 | const reference = new Reference(); |
| 355 | reference._native = ref; |
| 356 | return reference; |
| 357 | } |
| 358 | return null; |
| 359 | } |
| 360 | |
| 361 | get key(): string { |
| 362 | return this.native.key; |
nothing calls this directly
no outgoing calls
no test coverage detected