()
| 40 | } |
| 41 | |
| 42 | get app(): FirebaseApp { |
| 43 | if (!this._app) { |
| 44 | // @ts-ignore |
| 45 | this._app = FirebaseApp.fromNative(FIRApp.defaultApp()); |
| 46 | } |
| 47 | return this._app; |
| 48 | } |
| 49 | |
| 50 | get appInstanceId(): Promise<string> { |
| 51 | try { |
nothing calls this directly
no test coverage detected