authStateProvider top-level property

  1. @ProviderFor.new(authState)
StreamProvider<AuthState> authStateProvider
final

Streams auth state changes from Supabase.

Copied from authState.

Implementation

@ProviderFor(authState)
final authStateProvider = StreamProvider<AuthState>.internal(
  authState,
  name: r'authStateProvider',
  debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
      ? null
      : _$authStateHash,
  dependencies: null,
  allTransitiveDependencies: null,
);