FFRevenueCatAction constructor
FFRevenueCatAction({
- FFRevenueCatPaywall? paywall,
- FFRevenueCatPurchase? purchase,
- FFRevenueCatRestore? restore,
Implementation
factory FFRevenueCatAction({
FFRevenueCatPaywall? paywall,
FFRevenueCatPurchase? purchase,
FFRevenueCatRestore? restore,
}) {
final result = create();
if (paywall != null) result.paywall = paywall;
if (purchase != null) result.purchase = purchase;
if (restore != null) result.restore = restore;
return result;
}