CartData constructor

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

Implementation

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