pkIsAuthenticatedProvider top-level property

Provider<bool> pkIsAuthenticatedProvider
final

Whether the current user is authenticated.

Implementation

final pkIsAuthenticatedProvider = Provider<bool>((ref) {
  return SessionManager.instance.isAuthenticated;
});