Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-05-11 15:54:51 +08:00
parent 459f84b208
commit e70b4d341c
12 changed files with 18 additions and 25 deletions

View File

@@ -92,7 +92,7 @@ class UserInfoData {
: null;
mid = json['mid'];
mobileVerified = json['mobile_verified'];
money = json['money'] is int ? json['money'].toDouble() : json['money'];
money = (json['money'] as num?)?.toDouble() ?? 0.0;
moral = json['moral'];
official = json['official'];
officialVerify = json['officialVerify'];