()
| 32 | } |
| 33 | _app: FirebaseApp; |
| 34 | get app(): FirebaseApp { |
| 35 | if (!this._app) { |
| 36 | // @ts-ignore |
| 37 | this._app = FirebaseApp.fromNative(this.native.app); |
| 38 | } |
| 39 | return this._app; |
| 40 | } |
| 41 | |
| 42 | get isCrashlyticsCollectionEnabled(): boolean { |
| 43 | return this.native.isCrashlyticsCollectionEnabled(); |
nothing calls this directly
no test coverage detected