UserTraitsModel constructor

UserTraitsModel({
  1. String? userId,
  2. String? firstName,
  3. String? lastName,
  4. String? email,
  5. String? organization,
  6. String? department,
  7. String? jobTitle,
  8. String? phone,
  9. String? website,
  10. String? addressFirstLine,
  11. String? addressSecondLine,
  12. String? city,
  13. String? state,
  14. String? zipCode,
  15. String? fax,
  16. String? annualRevenue,
  17. String? employees,
  18. String? industry,
  19. Map<String, String>? customTraits,
})

Implementation

UserTraitsModel({
  this.userId,
  this.firstName,
  this.lastName,
  this.email,
  this.organization,
  this.department,
  this.jobTitle,
  this.phone,
  this.website,
  this.addressFirstLine,
  this.addressSecondLine,
  this.city,
  this.state,
  this.zipCode,
  this.fax,
  this.annualRevenue,
  this.employees,
  this.industry,
  this.customTraits,
});