PricingPhase constructor

PricingPhase({
  1. required int priceAmountMicros,
  2. required String priceCurrencyCode,
  3. required String formattedPrice,
  4. required String billingPeriod,
  5. required int recurrenceMode,
  6. int? billingCycleCount,
})

Implementation

PricingPhase({
  required this.priceAmountMicros,
  required this.priceCurrencyCode,
  required this.formattedPrice,
  required this.billingPeriod,
  required this.recurrenceMode,
  this.billingCycleCount,
});