Event constructor

Event({
  1. required String eventType,
  2. required DateTime sentAt,
  3. String? eventId,
  4. double? eventValue,
  5. List<String>? impression,
  6. String? itemId,
  7. Object? properties,
  8. String? recommendationId,
})

Implementation

Event({
  required this.eventType,
  required this.sentAt,
  this.eventId,
  this.eventValue,
  this.impression,
  this.itemId,
  this.properties,
  this.recommendationId,
});