RichTextContainerParagraph.fromJson constructor

RichTextContainerParagraph.fromJson(
  1. JSONMap json
)

Implementation

factory RichTextContainerParagraph.fromJson(JSONMap json) => RichTextContainerParagraph(
      content: List<JSONMap>.from(json["content"] ?? []).map(RichTextLeaf.fromJson).toList(),
    );