TrackData constructor

TrackData({
  1. required String event,
  2. String? userId,
  3. String? anonymousId,
  4. String? messageId,
  5. String? timestamp,
  6. AppDataContext? context,
  7. Map<String, dynamic>? properties,
})

Creates a new instance of TrackData.

Implementation

TrackData({
  required super.event,
  this.userId,
  this.anonymousId,
  super.messageId,
  super.timestamp,
  super.context,
  super.properties,
});