(metadata: FIRSnapshotMetadata)
| 241 | _native: FIRSnapshotMetadata; |
| 242 | |
| 243 | static fromNative(metadata: FIRSnapshotMetadata) { |
| 244 | if (metadata instanceof FIRSnapshotMetadata) { |
| 245 | const meta = new SnapshotMetadata(); |
| 246 | meta._native = metadata; |
| 247 | return meta; |
| 248 | } |
| 249 | return null; |
| 250 | } |
| 251 | |
| 252 | get fromCache(): boolean { |
| 253 | return this.native.fromCache; |
nothing calls this directly
no outgoing calls
no test coverage detected