EventData constructor

EventData({
  1. String? eventAction,
  2. String? eventCategory,
  3. String? eventCount,
  4. String? eventLabel,
  5. String? eventValue,
})

Implementation

EventData({
  this.eventAction,
  this.eventCategory,
  this.eventCount,
  this.eventLabel,
  this.eventValue,
});