UserData constructor

UserData({
  1. String? externalUserId,
  2. String? firstName,
  3. String? lastName,
  4. String? middleName,
  5. Gender? gender,
  6. String? birthday,
  7. List<String>? phones,
  8. List<String>? emails,
  9. List<String>? tags,
  10. Map<String, dynamic>? customAttributes,
})

Implementation

UserData({
  this.externalUserId,
  this.firstName,
  this.lastName,
  this.middleName,
  this.gender,
  this.birthday,
  this.phones,
  this.emails,
  this.tags,
  this.customAttributes,
});