Gets the currently logged in User. If none exists, null is returned.
null
User? get currentUser { final userHandle = _handle.currentUser; if (userHandle == null) { return null; } return UserInternal.create(userHandle, this); }