TrackFirstEventModel constructor

TrackFirstEventModel(
  1. String eventName,
  2. String firstCheckID,
  3. Map<String, dynamic> properties
)

Implementation

TrackFirstEventModel(
    String eventName, String firstCheckID, Map<String, dynamic> properties) {
  this.eventName = eventName;
  this.properties = properties;
  this.eventType = ThinkingAnalyticsTrackEventType.TRACK_FIRST;
  this.extraID = firstCheckID;
}