revenueCatDatasourceProvider top-level property

  1. @ProviderFor.new(revenueCatDatasource)
Provider<RevenueCatDatasource?> revenueCatDatasourceProvider
final

Native-only RevenueCat datasource. Returns null on web so the solo-user subscription screen can branch on platform and fall back to Stripe.

Copied from revenueCatDatasource.

Implementation

@ProviderFor(revenueCatDatasource)
final revenueCatDatasourceProvider = Provider<RevenueCatDatasource?>.internal(
  revenueCatDatasource,
  name: r'revenueCatDatasourceProvider',
  debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
      ? null
      : _$revenueCatDatasourceHash,
  dependencies: null,
  allTransitiveDependencies: null,
);