feat: report dyn

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-01-16 16:40:51 +08:00
parent 83205caa80
commit 2dafffda94
4 changed files with 222 additions and 47 deletions

View File

@@ -54,6 +54,7 @@ class ItemOrigModel {
this.modules,
this.type,
this.visible,
this.idStr,
});
Map? basic;
@@ -61,6 +62,7 @@ class ItemOrigModel {
ItemModulesModel? modules;
String? type;
bool? visible;
dynamic idStr;
ItemOrigModel.fromJson(Map<String, dynamic> json) {
basic = json['basic'];
@@ -68,6 +70,7 @@ class ItemOrigModel {
modules = ItemModulesModel.fromJson(json['modules']);
type = json['type'];
visible = json['visible'];
idStr = json['id_str'];
}
}