feat: msg like detail

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-19 10:14:46 +08:00
parent 30a8b4d25c
commit f440edf43b
11 changed files with 351 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
class MsgLikeDetailPage {
bool? isEnd;
MsgLikeDetailPage({this.isEnd});
factory MsgLikeDetailPage.fromJson(Map<String, dynamic> json) =>
MsgLikeDetailPage(
isEnd: json['is_end'] as bool?,
);
}