IdentifyData constructor

IdentifyData({
  1. required String email,
  2. String? firstName,
  3. String? lastName,
  4. String? phoneNumber,
  5. String? deviceId,
  6. Map<String, dynamic>? attributes,
})

Implementation

IdentifyData(
    {required this.email,
    this.firstName,
    this.lastName,
    this.phoneNumber,
    this.deviceId,
    this.attributes});