DiscountIOS constructor

const DiscountIOS({
  1. required String identifier,
  2. String? localizedPrice,
  3. required int numberOfPeriods,
  4. required PaymentModeIOS paymentMode,
  5. required String price,
  6. required double priceAmount,
  7. required String subscriptionPeriod,
  8. required String type,
})

Implementation

const DiscountIOS({
  required this.identifier,
  this.localizedPrice,
  required this.numberOfPeriods,
  required this.paymentMode,
  required this.price,
  required this.priceAmount,
  required this.subscriptionPeriod,
  required this.type,
});