opt member tab

try-catch handle live dm

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-14 16:18:37 +08:00
parent e280f6ee4a
commit d6c12195f8
4 changed files with 140 additions and 130 deletions

View File

@@ -22,7 +22,7 @@ class SpaceTab {
bool? opus;
bool? cheeseVideo;
bool? brand;
bool? hasItem;
// bool? hasItem;
SpaceTab({
this.archive,
@@ -74,6 +74,6 @@ class SpaceTab {
opus = json['opus'] as bool?;
cheeseVideo = json['cheese_video'] as bool?;
brand = json['brand'] as bool?;
hasItem = json.values.any((e) => e == true);
// hasItem = json.values.any((e) => e == true);
}
}