PricingPhaseWrapper constructor

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

Creates a new PricingPhaseWrapper from the supplied info.

Implementation

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