currentUser property

AuthUserVO? get currentUser

Returns the currently authenticated user as an AuthUserVO object.

Implementation

AuthUserVO? get currentUser => _authDataService.currentUser is User
    ? AuthUserVO.fromAuthUser(_authDataService.currentUser!)
    : null;