UserData constructor

UserData({
  1. String? username,
  2. String? name,
  3. String? birthday,
  4. String? avatar,
  5. int? ranking,
  6. int? reputation,
  7. String? gitHub,
  8. String? twitter,
  9. String? linkedIN,
  10. List<String>? websites,
  11. String? country,
  12. String? company,
  13. String? school,
  14. List<String>? skillTags,
  15. String? about,
  16. double? starRating,
  17. int? contributionsPoints,
  18. int? contributionsQuestionCount,
  19. int? contributionsTestcaseCount,
})

Implementation

UserData({
  this.username,
  this.name,
  this.birthday,
  this.avatar,
  this.ranking,
  this.reputation,
  this.gitHub,
  this.twitter,
  this.linkedIN,
  this.websites,
  this.country,
  this.company,
  this.school,
  this.skillTags,
  this.about,
  this.starRating,
  this.contributionsPoints,
  this.contributionsQuestionCount,
  this.contributionsTestcaseCount
});