Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-23 16:47:11 +08:00
parent 148e0872b4
commit 418a1e8d39
821 changed files with 29467 additions and 25520 deletions

View File

@@ -14,11 +14,11 @@ class Extra {
});
factory Extra.fromJson(Map<String, dynamic> json) => Extra(
card: json['card'] == null
? null
: SpaceCard.fromJson(json['card'] as Map<String, dynamic>),
salesType: json['sales_type'] as int?,
upzoneEntranceType: json['upzone_entrance_type'] as int?,
upzoneEntranceReportId: json['upzone_entrance_report_id'] as String?,
);
card: json['card'] == null
? null
: SpaceCard.fromJson(json['card'] as Map<String, dynamic>),
salesType: json['sales_type'] as int?,
upzoneEntranceType: json['upzone_entrance_type'] as int?,
upzoneEntranceReportId: json['upzone_entrance_report_id'] as String?,
);
}