QProductStoreDetails constructor

const QProductStoreDetails(
  1. String? basePlanId,
  2. String productId,
  3. String name,
  4. String title,
  5. String description,
  6. List<QProductOfferDetails>? subscriptionOfferDetails,
  7. QProductOfferDetails? defaultSubscriptionOfferDetails,
  8. QProductOfferDetails? basePlanSubscriptionOfferDetails,
  9. QProductInAppDetails? inAppOfferDetails,
  10. bool hasTrialOffer,
  11. bool hasIntroOffer,
  12. bool hasTrialOrIntroOffer,
  13. QProductType productType,
  14. bool isInApp,
  15. bool isSubscription,
  16. bool isPrepaid,
)

Implementation

const QProductStoreDetails(
    this.basePlanId,
    this.productId,
    this.name,
    this.title,
    this.description,
    this.subscriptionOfferDetails,
    this.defaultSubscriptionOfferDetails,
    this.basePlanSubscriptionOfferDetails,
    this.inAppOfferDetails,
    this.hasTrialOffer,
    this.hasIntroOffer,
    this.hasTrialOrIntroOffer,
    this.productType,
    this.isInApp,
    this.isSubscription,
    this.isPrepaid,
);