()
| 548 | |
| 549 | _user: User; |
| 550 | get user(): User { |
| 551 | if (!this._user) { |
| 552 | this._user = User.fromNative(this.native.getUser()); |
| 553 | } |
| 554 | return this._user; |
| 555 | } |
| 556 | } |
| 557 | |
| 558 | let lastActivity: WeakRef<androidx.appcompat.app.AppCompatActivity>; |
nothing calls this directly
no test coverage detected