OrgSubscriptionProvider constructor

OrgSubscriptionProvider(
  1. String orgId
)

Current active subscription for an organization, or null if on trial.

Copied from orgSubscription.

Implementation

OrgSubscriptionProvider(String orgId)
  : this._internal(
      (ref) => orgSubscription(ref as OrgSubscriptionRef, orgId),
      from: orgSubscriptionProvider,
      name: r'orgSubscriptionProvider',
      debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
          ? null
          : _$orgSubscriptionHash,
      dependencies: OrgSubscriptionFamily._dependencies,
      allTransitiveDependencies:
          OrgSubscriptionFamily._allTransitiveDependencies,
      orgId: orgId,
    );