OrderPromotionItem constructor

OrderPromotionItem({
  1. String? lineItemId,
  2. String? offerId,
  3. String? productId,
  4. int? quantity,
})

Implementation

OrderPromotionItem({
  this.lineItemId,
  this.offerId,
  this.productId,
  this.quantity,
});