RichTextUnderline.fromJson constructor

RichTextUnderline.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory RichTextUnderline.fromJson(Map<String, dynamic> json) => RichTextUnderline(
  text: RichText.fromJson(json['text']),
);