onboardingStateProvider top-level property
- @ProviderFor.new(onboardingState)
final
Resolves the current onboarding status for the signed-in user. The gate watches this and redirects (or shows the invitation modal) accordingly.
Copied from onboardingState.
Implementation
@ProviderFor(onboardingState)
final onboardingStateProvider =
AutoDisposeFutureProvider<OnboardingStatus>.internal(
onboardingState,
name: r'onboardingStateProvider',
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
? null
: _$onboardingStateHash,
dependencies: null,
allTransitiveDependencies: null,
);