opt dyn panel

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-24 11:57:57 +08:00
parent da56c66168
commit 86c64fdd05
14 changed files with 403 additions and 853 deletions

View File

@@ -29,7 +29,6 @@ class DynamicItemModel {
DynamicItemModel? orig;
String? type;
bool? visible;
bool? isForwarded;
// opus
Fallback? fallback;
@@ -41,7 +40,7 @@ class DynamicItemModel {
? ItemModulesModel()
: ItemModulesModel.fromJson(json['modules']);
if (json['orig'] != null) {
orig = DynamicItemModel.fromJson(json['orig'])..isForwarded = true;
orig = DynamicItemModel.fromJson(json['orig']);
}
type = json['type'];
visible = json['visible'];