EcommerceTransactionItem constructor

const EcommerceTransactionItem({
  1. String? itemId,
  2. String? sku,
  3. double? price,
  4. int? quantity,
  5. String? name,
  6. String? category,
  7. String? currency,
  8. Set<SelfDescribingJson> contexts = const {},
})

Implementation

const EcommerceTransactionItem({
  this.itemId,
  this.sku,
  this.price,
  this.quantity,
  this.name,
  this.category,
  this.currency,
  this.contexts = const {},
});