currentUserProvider top-level property
- @ProviderFor.new(currentUser)
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,
);