Item constructor

Item({
  1. List<EventParameter>? additionalItemParameters,
  2. double? conversionValue,
  3. List<CustomVariable>? customVariables,
  4. String? itemId,
  5. String? merchantFeedLabel,
  6. String? merchantFeedLanguageCode,
  7. String? merchantId,
  8. String? merchantProductId,
  9. String? quantity,
  10. double? unitPrice,
})

Implementation

Item({
  this.additionalItemParameters,
  this.conversionValue,
  this.customVariables,
  this.itemId,
  this.merchantFeedLabel,
  this.merchantFeedLanguageCode,
  this.merchantId,
  this.merchantProductId,
  this.quantity,
  this.unitPrice,
});