BaseIdentifyData constructor

BaseIdentifyData({
  1. String? messageId,
  2. String? timestamp,
  3. AppDataContext? context,
  4. Map<String, dynamic>? traits,
})

Creates a new instance of BaseIdentifyData.

Implementation

BaseIdentifyData({
  super.messageId,
  super.timestamp,
  this.context,
  this.traits,
});