PremiumPaymentOption constructor

PremiumPaymentOption({
  1. required String currency,
  2. required int amount,
  3. required int discountPercentage,
  4. required int monthCount,
  5. required String storeProductId,
  6. InternalLinkType? paymentLink,
})

Implementation

PremiumPaymentOption({
  required this.currency,
  required this.amount,
  required this.discountPercentage,
  required this.monthCount,
  required this.storeProductId,
  this.paymentLink,
});