CommodityStoreEntity constructor

CommodityStoreEntity({
  1. String? subscriptionRoundUnit,
  2. int? subscriptionRoundValue,
  3. String? introductoryPaymentMode,
  4. String? introductoryRoundUnit,
  5. int? promotionalRoundValue,
  6. bool? isEligibleForIntroOffer,
  7. String? storeCurrency,
  8. bool? isEligiblePromotionalOffer,
  9. int? introductoryRoundValue,
  10. num? promotionalOfferPrice,
  11. num? storePrice,
  12. String? promotionalRoundUnit,
  13. num? introductoryOfferPrice,
})

Implementation

CommodityStoreEntity({
    this.subscriptionRoundUnit,
    this.subscriptionRoundValue,
    this.introductoryPaymentMode,
    this.introductoryRoundUnit,
    this.promotionalRoundValue,
    this.isEligibleForIntroOffer,
    this.storeCurrency,
    this.isEligiblePromotionalOffer,
    this.introductoryRoundValue,
    this.promotionalOfferPrice,
    this.storePrice,
    this.promotionalRoundUnit,
    this.introductoryOfferPrice,});