refa: whisper page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-17 21:29:03 +08:00
parent fa48a07970
commit 70edd4cc3a
5 changed files with 379 additions and 457 deletions

View File

@@ -4,7 +4,7 @@ class MsgFeedUnread {
this.chat = 0,
this.like = 0,
this.reply = 0,
this.sys_msg = 0,
this.sysMsg = 0,
this.up = 0,
});
@@ -12,7 +12,7 @@ class MsgFeedUnread {
int chat = 0;
int like = 0;
int reply = 0;
int sys_msg = 0;
int sysMsg = 0;
int up = 0;
MsgFeedUnread.fromJson(Map<String, dynamic> json) {
@@ -20,7 +20,7 @@ class MsgFeedUnread {
chat = json['chat'] ?? 0;
like = json['like'] ?? 0;
reply = json['reply'] ?? 0;
sys_msg = json['sys_msg'] ?? 0;
sysMsg = json['sys_msg'] ?? 0;
up = json['up'] ?? 0;
}
}