TextParagraph.fromJson constructor

TextParagraph.fromJson(
  1. Map json_
)

Implementation

TextParagraph.fromJson(core.Map json_)
    : this(
        text: json_['text'] as core.String?,
      );