Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-23 09:04:37 +08:00
parent faaffd0f30
commit d69649f1b6
4 changed files with 13 additions and 11 deletions

View File

@@ -6,7 +6,7 @@ class Card {
String? face;
int? fans;
int? attention;
BaseOfficialVerify? officialVerify;
BaseOfficialVerify? official;
Vip? vip;
Card({
@@ -15,7 +15,7 @@ class Card {
this.face,
this.fans,
this.attention,
this.officialVerify,
this.official,
this.vip,
});
@@ -25,10 +25,10 @@ class Card {
face: json['face'] as String?,
fans: json['fans'] as int?,
attention: json['attention'] as int?,
officialVerify: json['official_verify'] == null
official: json['Official'] == null
? null
: BaseOfficialVerify.fromJson(
json['official_verify'] as Map<String, dynamic>,
json['Official'] as Map<String, dynamic>,
),
vip: json['vip'] == null
? null