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

@@ -10,12 +10,12 @@ class Guard {
Guard({this.uri, this.desc, this.highLight, this.item, this.buttonMsg});
factory Guard.fromJson(Map<String, dynamic> json) => Guard(
uri: json['uri'] as String?,
desc: json['desc'] as String?,
highLight: json['high_light'] as String?,
item: (json['item'] as List<dynamic>?)
?.map((e) => Item.fromJson(e as Map<String, dynamic>))
.toList(),
buttonMsg: json['button_msg'] as String?,
);
uri: json['uri'] as String?,
desc: json['desc'] as String?,
highLight: json['high_light'] as String?,
item: (json['item'] as List<dynamic>?)
?.map((e) => Item.fromJson(e as Map<String, dynamic>))
.toList(),
buttonMsg: json['button_msg'] as String?,
);
}