EcommerceData constructor

EcommerceData({
  1. String? actionType,
  2. String? ecommerceType,
  3. List<ProductData>? products,
  4. TransactionData? transaction,
})

Implementation

EcommerceData({
  this.actionType,
  this.ecommerceType,
  this.products,
  this.transaction,
});