onboardingStateProvider top-level property

  1. @ProviderFor.new(onboardingState)
AutoDisposeFutureProvider<OnboardingStatus> onboardingStateProvider
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,
    );