EventTrackerData constructor

EventTrackerData({
  1. String? eventName,
  2. String? coupon,
  3. String? currency,
  4. List<EventTrackerItem>? items,
  5. Map<String, dynamic>? customData,
  6. String? paymentType,
  7. Decimal? value,
})

Implementation

EventTrackerData({
  this.eventName,
  this.coupon,
  this.currency,
  this.items,
  this.customData,
  this.paymentType,
  this.value,
});