reviewIntroSeenProvider top-level property

  1. @ProviderFor.new(ReviewIntroSeen)
AutoDisposeAsyncNotifierProviderImpl<ReviewIntroSeen, bool> reviewIntroSeenProvider
final

Whether the user has dismissed the one-time spaced-repetition intro banner shown at the top of ReviewSessionScreen. The standalone /onboarding/review screen was removed in favour of this contextual banner — the explanation lands the moment the user enters their first review session, then never again.

Copied from ReviewIntroSeen.

Implementation

@ProviderFor(ReviewIntroSeen)
final reviewIntroSeenProvider =
    AutoDisposeAsyncNotifierProvider<ReviewIntroSeen, bool>.internal(
      ReviewIntroSeen.new,
      name: r'reviewIntroSeenProvider',
      debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
          ? null
          : _$reviewIntroSeenHash,
      dependencies: null,
      allTransitiveDependencies: null,
    );