(snapshot: FIRDocumentSnapshot)
| 277 | _native: FIRDocumentSnapshot; |
| 278 | |
| 279 | static fromNative(snapshot: FIRDocumentSnapshot) { |
| 280 | if (snapshot instanceof FIRDocumentSnapshot) { |
| 281 | const ss = new DocumentSnapshot(); |
| 282 | ss._native = snapshot; |
| 283 | return ss; |
| 284 | } |
| 285 | return null; |
| 286 | } |
| 287 | |
| 288 | get exists(): boolean { |
| 289 | return this.native.exists; |
nothing calls this directly
no outgoing calls
no test coverage detected