(snapshot: FIRQuerySnapshot)
| 626 | _native: FIRQuerySnapshot; |
| 627 | |
| 628 | static fromNative(snapshot: FIRQuerySnapshot) { |
| 629 | if (snapshot instanceof FIRQuerySnapshot) { |
| 630 | const ss = new QuerySnapshot(); |
| 631 | ss._native = snapshot; |
| 632 | return ss; |
| 633 | } |
| 634 | return null; |
| 635 | } |
| 636 | |
| 637 | get docs() { |
| 638 | const documents = this.native.documents; |
nothing calls this directly
no outgoing calls
no test coverage detected