()
| 156 | this.native?.setAutoInitEnabled?.(value); |
| 157 | } |
| 158 | get app(): FirebaseApp { |
| 159 | if (!this._app) { |
| 160 | // @ts-ignore |
| 161 | this._app = FirebaseApp.fromNative(FIRApp.defaultApp()); |
| 162 | } |
| 163 | return this._app; |
| 164 | } |
| 165 | |
| 166 | get native() { |
| 167 | if (!this._native) { |
nothing calls this directly
no test coverage detected