(snapshot: FIRDataSnapshot)
| 534 | _native: FIRDataSnapshot; |
| 535 | |
| 536 | static fromNative(snapshot: FIRDataSnapshot) { |
| 537 | if (snapshot instanceof FIRDataSnapshot) { |
| 538 | const ss = new DataSnapshot(); |
| 539 | ss._native = snapshot; |
| 540 | return ss; |
| 541 | } |
| 542 | return null; |
| 543 | } |
| 544 | |
| 545 | get native() { |
| 546 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected