RichTextReference.fromJson constructor
Parse from a json
Implementation
factory RichTextReference.fromJson(Map<String, dynamic> json) => RichTextReference(
text: RichText.fromJson(json['text']),
anchorName: json['anchor_name'],
url: json['url'],
);