UserTraits constructor

UserTraits({
  1. Address? address,
  2. int? age,
  3. String? avatar,
  4. String? birthday,
  5. Company? company,
  6. String? createdAt,
  7. String? description,
  8. String? email,
  9. String? firstName,
  10. String? gender,
  11. String? id,
  12. String? lastName,
  13. String? name,
  14. String? phone,
  15. String? title,
  16. String? username,
  17. String? website,
  18. Map<String, dynamic>? custom,
})

Implementation

UserTraits(
    {this.address,
    this.age,
    this.avatar,
    this.birthday,
    this.company,
    this.createdAt,
    this.description,
    this.email,
    this.firstName,
    this.gender,
    this.id,
    this.lastName,
    this.name,
    this.phone,
    this.title,
    this.username,
    this.website,
    Map<String, dynamic>? custom})
    : super(custom: custom);