()
| 1424 | |
| 1425 | _app: FirebaseApp; |
| 1426 | get app(): FirebaseApp { |
| 1427 | if (!this._app) { |
| 1428 | // @ts-ignore |
| 1429 | this._app = FirebaseApp.fromNative(this.native.getApp()); |
| 1430 | } |
| 1431 | return this._app; |
| 1432 | } |
| 1433 | |
| 1434 | get currentUser(): User { |
| 1435 | return this.native ? User.fromNative(this.native.getCurrentUser()) : null; |
nothing calls this directly
no test coverage detected