currentUser property
Gets the current user.
Returns null
if no user is authenticated.
Implementation
@override
CarpUser get currentUser => nonNullAble(_currentUser);
set
currentUser
(CarpUser? user)
Implementation
set currentUser(CarpUser? user) => _currentUser = user;