CartData constructor

CartData({
  1. List<String>? couponCodes,
  2. List<Item>? items,
  3. String? merchantFeedLabel,
  4. String? merchantFeedLanguageCode,
  5. String? merchantId,
  6. double? transactionDiscount,
})

Implementation

CartData({
  this.couponCodes,
  this.items,
  this.merchantFeedLabel,
  this.merchantFeedLanguageCode,
  this.merchantId,
  this.transactionDiscount,
});