(change: FIRDocumentChange)
| 336 | _native: FIRDocumentChange; |
| 337 | |
| 338 | static fromNative(change: FIRDocumentChange): DocumentChange { |
| 339 | if (change instanceof FIRDocumentChange) { |
| 340 | const documentChange = new DocumentChange(); |
| 341 | documentChange._native = change; |
| 342 | return documentChange; |
| 343 | } |
| 344 | return null; |
| 345 | } |
| 346 | |
| 347 | get doc() { |
| 348 | return QueryDocumentSnapshot.fromNative(this.native.document); |
nothing calls this directly
no outgoing calls
no test coverage detected