UserData constructor
UserData({
- String? username,
- String? name,
- String? birthday,
- String? avatar,
- int? ranking,
- int? reputation,
- String? gitHub,
- String? twitter,
- String? linkedIN,
- List<
String> ? websites, - String? country,
- String? company,
- String? school,
- List<
String> ? skillTags, - String? about,
- double? starRating,
- int? contributionsPoints,
- int? contributionsQuestionCount,
- 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
});