Item constructor

Item({
  1. List<ItemParameter>? additionalItemParameters,
  2. String? itemId,
  3. String? merchantProductId,
  4. String? quantity,
  5. double? unitPrice,
})

Implementation

Item({
  this.additionalItemParameters,
  this.itemId,
  this.merchantProductId,
  this.quantity,
  this.unitPrice,
});