Traits constructor

Traits({
  1. String? avatar,
  2. DateTime? createdAt,
  3. String? description,
  4. String? email,
  5. String? fax,
  6. String? name,
  7. String? phone,
  8. String? website,
  9. int? age,
  10. DateTime? birthday,
  11. String? firstName,
  12. String? gender,
  13. String? lastName,
  14. String? title,
  15. String? username,
  16. int? employees,
  17. String? industry,
  18. Address? address,
  19. Map<String, Object> others = const {},
})

Implementation

Traits(
    {this.avatar,
    this.createdAt,
    this.description,
    this.email,
    this.fax,
    this.name,
    this.phone,
    this.website,
    this.age,
    this.birthday,
    this.firstName,
    this.gender,
    this.lastName,
    this.title,
    this.username,
    this.employees,
    this.industry,
    this.address,
    this.others = const {}});