feat: 动态页面跳转个人主页

This commit is contained in:
guozhigq
2023-07-15 23:24:02 +08:00
parent a23103eb69
commit a0427c672b
10 changed files with 67 additions and 42 deletions

View File

@ -572,17 +572,20 @@ class RichTextNodeItem {
this.origText,
this.text,
this.type,
this.rid,
});
Emoji? emoji;
String? origText;
String? text;
String? type;
String? rid;
RichTextNodeItem.fromJson(Map<String, dynamic> json) {
emoji = json['emoji'] != null ? Emoji.fromJson(json['emoji']) : null;
origText = json['orig_text'];
text = json['text'];
type = json['type'];
rid = json['rid'];
}
}