()
| 116 | } |
| 117 | |
| 118 | get app(): FirebaseApp { |
| 119 | if (!this._app) { |
| 120 | // @ts-ignore |
| 121 | this._app = FirebaseApp.fromNative(this.native.app); |
| 122 | } |
| 123 | return this._app; |
| 124 | } |
| 125 | |
| 126 | get fetchTimeMillis(): number { |
| 127 | return this.native.lastFetchTime?.getTime?.(); |
nothing calls this directly
no test coverage detected