SkuDetailsWrapper constructor

SkuDetailsWrapper({
  1. required String description,
  2. required String freeTrialPeriod,
  3. required String introductoryPrice,
  4. required int introductoryPriceAmountMicros,
  5. required int introductoryPriceCycles,
  6. required String introductoryPricePeriod,
  7. required String price,
  8. required int priceAmountMicros,
  9. required String priceCurrencyCode,
  10. required String sku,
  11. required String subscriptionPeriod,
  12. required String title,
  13. required SkuType type,
  14. required String originalPrice,
  15. required int originalPriceAmountMicros,
  16. required String originalJson,
})

Creates a SkuDetailsWrapper with the given purchase details.

Implementation

SkuDetailsWrapper(
    {required this.description,
    required this.freeTrialPeriod,
    required this.introductoryPrice,
    required this.introductoryPriceAmountMicros,
    required this.introductoryPriceCycles,
    required this.introductoryPricePeriod,
    required this.price,
    required this.priceAmountMicros,
    required this.priceCurrencyCode,
    required this.sku,
    required this.subscriptionPeriod,
    required this.title,
    required this.type,
    required this.originalPrice,
    required this.originalPriceAmountMicros,
    required this.originalJson});