What Happens to currentUser When The User Token Expires

In iOS I am testing for .isUserTokenValid. If the user token is valid, currentUser is the user that logged in last. If the user token expires, does currentUser become nil?

Is my assumption that currentUser becomes nil correct?

No, currentUser becomes nil only after logout.

I just found the same thing. I was creating a change password feature and found this is a way to force a user token to expire. Thanks for the help.