UserInfo constructor

UserInfo({
  1. required String uuid,
  2. required String token,
  3. required List<Wallet> wallets,
  4. String? name,
  5. String? avatar,
  6. String? phone,
  7. String? email,
  8. String? facebookId,
  9. String? facebookEmail,
  10. String? googleId,
  11. String? googleEmail,
  12. String? appleId,
  13. String? appleEmail,
  14. String? discordId,
  15. String? discordEmail,
  16. String? githubId,
  17. String? githubEmail,
  18. String? linkedinId,
  19. String? linkedinEmail,
  20. String? microsoftId,
  21. String? microsoftEmail,
  22. String? twitchId,
  23. String? twitchEmail,
  24. String? twitterId,
  25. String? twitterEmail,
  26. String? createdAt,
  27. String? updatedAt,
  28. ThirdpartyUserInfo? thirdpartyUserInfo,
  29. String? jwtId,
  30. SecurityAccount? securityAccount,
  31. String? signature,
  32. String? message,
})

Implementation

UserInfo({
  required this.uuid,
  required this.token,
  required this.wallets,
  this.name,
  this.avatar,
  this.phone,
  this.email,
  this.facebookId,
  this.facebookEmail,
  this.googleId,
  this.googleEmail,
  this.appleId,
  this.appleEmail,
  this.discordId,
  this.discordEmail,
  this.githubId,
  this.githubEmail,
  this.linkedinId,
  this.linkedinEmail,
  this.microsoftId,
  this.microsoftEmail,
  this.twitchId,
  this.twitchEmail,
  this.twitterId,
  this.twitterEmail,
  this.createdAt,
  this.updatedAt,
  this.thirdpartyUserInfo,
  this.jwtId,
  this.securityAccount,
  this.signature,
  this.message,
});