()
| 192 | return this.native; |
| 193 | } |
| 194 | get app(): FirebaseApp { |
| 195 | if (!this._app) { |
| 196 | // @ts-ignore |
| 197 | this._app = FirebaseApp.fromNative(this._nativeApp); |
| 198 | } |
| 199 | return this._app; |
| 200 | } |
| 201 | } |
nothing calls this directly
no test coverage detected