feat: 动态页面跳转个人主页
This commit is contained in:
@ -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'];
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user