IdentifyData constructor

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

Creates a new instance of IdentifyData.

Implementation

IdentifyData({
  required this.userId,
  super.messageId,
  super.timestamp,
  super.context,
  super.traits,
});