Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-04-29 12:47:14 +08:00
parent c7864ff4a3
commit cd26cf6d98
104 changed files with 482 additions and 391 deletions

View File

@@ -28,7 +28,7 @@ class ReservationCardItem {
total: json['total'] ?? 0,
isFollow: json['is_follow'] == 1,
livePlanStartTime: json['live_plan_start_time'] as int?,
descText1: noneNullOrEmptyString(json['desc_text_1']?['text']),
descText1: nonNullOrEmptyString(json['desc_text_1']?['text']),
dynamicId: json['dynamic_id'] as String?,
lotteryPrizeInfo: json['lottery_prize_info'] == null
? null

View File

@@ -28,7 +28,7 @@ class TopImage {
final item = json['item'];
final img = item['image'];
title = json['title'] == null ? null : TopTitle.fromJson(json['title']);
_defaultImage = noneNullOrEmptyString(img?['default_image']);
_defaultImage = nonNullOrEmptyString(img?['default_image']);
fullCover = json['cover'];
double dy = 0;
try {