UserInfo constructor
UserInfo({
- required String uuid,
- required String token,
- required List<
Wallet> wallets, - String? name,
- String? avatar,
- String? phone,
- String? email,
- String? facebookId,
- String? facebookEmail,
- String? googleId,
- String? googleEmail,
- String? appleId,
- String? appleEmail,
- String? discordId,
- String? discordEmail,
- String? githubId,
- String? githubEmail,
- String? linkedinId,
- String? linkedinEmail,
- String? microsoftId,
- String? microsoftEmail,
- String? twitchId,
- String? twitchEmail,
- String? twitterId,
- String? twitterEmail,
- String? createdAt,
- String? updatedAt,
- ThirdpartyUserInfo? thirdpartyUserInfo,
- String? jwtId,
- SecurityAccount? securityAccount,
- String? signature,
- 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,
});