UserAttributes constructor

UserAttributes({
  1. String? firstName,
  2. String? middleName,
  3. String? lastName,
  4. Gender? gender,
  5. String? birthday,
  6. List<String>? tags,
  7. Map<String, dynamic>? customAttributes,
})

Default constructor with all params.

Implementation

UserAttributes({
  this.firstName,
  this.middleName,
  this.lastName,
  this.gender,
  this.birthday,
  this.tags,
  this.customAttributes,
});