TextContent.fromJson constructor

TextContent.fromJson(
  1. Map json_
)

Implementation

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