TextParagraph.fromJson constructor
      
      TextParagraph.fromJson(
    
    
- Map json_
Implementation
TextParagraph.fromJson(core.Map json_)
    : this(
        text: json_.containsKey('text') ? json_['text'] as core.String : null,
      );