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,13 +10,13 @@ class MsgAtItem {
MsgAtItem({this.id, this.user, this.item, this.atTime});
factory MsgAtItem.fromJson(Map<String, dynamic> json) => MsgAtItem(
id: json['id'] as int?,
user: json['user'] == null
? null
: User.fromJson(json['user'] as Map<String, dynamic>),
item: json['item'] == null
? null
: MsgAtContent.fromJson(json['item'] as Map<String, dynamic>),
atTime: json['at_time'] as int?,
);
id: json['id'] as int?,
user: json['user'] == null
? null
: User.fromJson(json['user'] as Map<String, dynamic>),
item: json['item'] == null
? null
: MsgAtContent.fromJson(json['item'] as Map<String, dynamic>),
atTime: json['at_time'] as int?,
);
}