()
| 35 | } |
| 36 | _app: FirebaseApp; |
| 37 | get app(): FirebaseApp { |
| 38 | if (!this._app) { |
| 39 | // @ts-ignore |
| 40 | this._app = FirebaseApp.fromNative(this.native.app); |
| 41 | } |
| 42 | return this._app; |
| 43 | } |
| 44 | |
| 45 | checkForUnsentReports(): Promise<boolean> { |
| 46 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected