User constructor

User({
  1. int? userID,
  2. Rx<String>? userName,
  3. Rx<String>? firstName,
  4. Rx<String>? lastName,
  5. Rx<String>? displayName,
  6. Media? avatar,
  7. Media? banner,
  8. Media? wallpaper,
  9. String? registerDate,
  10. Job? job,
  11. Role? role,
  12. Rx<String>? burc,
  13. Rx<int>? level,
  14. Rx<String>? levelColor,
  15. Rx<String>? xp,
  16. Team? favTeam,
  17. bool? status,
  18. Rx<bool>? ismyFriend,
  19. Rxn<UserDetailInfo>? detailInfo,
  20. RxList<User>? myFriends,
  21. RxList<User>? mycloseFriends,
  22. List<Group>? myGroups,
  23. List<School>? mySchools,
  24. List<Station>? myStations,
  25. List<Post>? widgetPosts,
  26. List<Media>? widgetGallery,
  27. List<Post>? widgettaggedPosts,
  28. Rx<Socialaccounts>? socialaccounts,
  29. RxList<Game>? popularGames,
})

Implementation

User({
  this.userID,
  this.userName,
  this.firstName,
  this.lastName,
  this.displayName,
  this.avatar,
  this.banner,
  this.wallpaper,
  this.registerDate,
  this.job,
  this.role,
  this.burc,
  this.level,
  this.levelColor,
  this.xp,
  this.favTeam,
  this.status,
  this.ismyFriend,
  this.detailInfo,
  this.myFriends,
  this.mycloseFriends,
  this.myGroups,
  this.mySchools,
  this.myStations,
  this.widgetPosts,
  this.widgetGallery,
  this.widgettaggedPosts,
  this.socialaccounts,
  this.popularGames,
});