ApphudUser constructor

ApphudUser({
  1. required String userId,
  2. required List<ApphudSubscriptionWrapper> subscriptions,
  3. required List<ApphudNonRenewingPurchase> purchases,
  4. required List<ApphudPlacement> rawPlacements,
  5. required List<ApphudPaywall> rawPaywalls,
  6. required bool hasPurchases,
})

Implementation

ApphudUser({
  required this.userId,
  required this.subscriptions,
  required this.purchases,
  required this.rawPlacements,
  required this.rawPaywalls,
  required this.hasPurchases,
});