feat: 查看笔记

This commit is contained in:
guozhigq
2023-05-27 20:20:31 +08:00
parent aba707e627
commit d2cc94fb6f
3 changed files with 34 additions and 6 deletions

View File

@ -7,6 +7,7 @@ class ReplyContent {
this.jumpUrl, // {}
this.pictures, // {}
this.vote,
this.richText
});
String? message;
@ -16,6 +17,7 @@ class ReplyContent {
Map? jumpUrl;
List? pictures;
Map? vote;
Map? richText;
ReplyContent.fromJson(Map<String, dynamic> json) {
message = json['message'];
@ -25,5 +27,6 @@ class ReplyContent {
jumpUrl = json['jump_url'] ?? {};
pictures = json['pictures'] ?? [];
vote = json['vote'] ?? {};
richText = json['rich_text'] ?? {};
}
}