currentUser property

CarpUser get currentUser

Gets the current user. Returns null if no user is authenticated.

Implementation

CarpUser get currentUser => nonNullAble(_currentUser);
set currentUser (CarpUser? user)

Implementation

set currentUser(CarpUser? user) => _currentUser = user;