currentUser property

  1. @override
CarpUser currentUser
override

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

Implementation

@override
CarpUser get currentUser => nonNullAble(_currentUser);
void currentUser=(CarpUser? user)

Implementation

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