RichTextContainerQuote.fromJson constructor

RichTextContainerQuote.fromJson(
  1. JSONMap json
)

Implementation

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