MyAccountDetails constructor
MyAccountDetails({
- required String username,
- required String email,
- required bool member,
- DateTime? memberExpiration,
- required AccountStatus status,
- List<
String> badges = const [], - List<
String> skins = const [], - required int gems,
- required int eventToken,
- required int achievementsPoints,
- required bool banned,
- String? banReason,
Returns a new MyAccountDetails instance.
Implementation
MyAccountDetails({
required this.username,
required this.email,
required this.member,
this.memberExpiration,
required this.status,
this.badges = const [],
this.skins = const [],
required this.gems,
required this.eventToken,
required this.achievementsPoints,
required this.banned,
this.banReason,
});