()
| 162 | } |
| 163 | _app: FirebaseApp; |
| 164 | get app(): FirebaseApp { |
| 165 | if (!this._app) { |
| 166 | // @ts-ignore |
| 167 | this._app = FirebaseApp.fromNative(this._nativeApp); |
| 168 | } |
| 169 | return this._app; |
| 170 | } |
| 171 | } |
nothing calls this directly
no test coverage detected