currentUserProvider top-level property

  1. @ProviderFor.new(currentUser)
Provider<User?> currentUserProvider
final

Exposes the current authenticated user (null when signed out).

Copied from currentUser.

Implementation

@ProviderFor(currentUser)
final currentUserProvider = Provider<User?>.internal(
  currentUser,
  name: r'currentUserProvider',
  debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
      ? null
      : _$currentUserHash,
  dependencies: null,
  allTransitiveDependencies: null,
);