()
| 1258 | |
| 1259 | _app: FirebaseApp; |
| 1260 | get app(): FirebaseApp { |
| 1261 | if (!this._app) { |
| 1262 | // @ts-ignore |
| 1263 | this._app = FirebaseApp.fromNative(this.native.app); |
| 1264 | } |
| 1265 | return this._app; |
| 1266 | } |
| 1267 | |
| 1268 | get currentUser(): User { |
| 1269 | return this.native ? User.fromNative(this.native.currentUser) : null; |
nothing calls this directly
no test coverage detected