UserAttributes constructor

UserAttributes({
  1. String? lastName,
  2. String? firstName,
  3. Address? address,
  4. String? email,
  5. List<UserCustomField>? fields,
  6. String? languageCode,
  7. String? phone,
  8. String? timeZone,
})

Implementation

UserAttributes({
  this.lastName,
  this.firstName,
  this.address,
  this.email,
  this.fields,
  this.languageCode,
  this.phone,
  this.timeZone,
});