WidgetToolTextResponseConfig.fromJson constructor

WidgetToolTextResponseConfig.fromJson(
  1. Map json_
)

Implementation

WidgetToolTextResponseConfig.fromJson(core.Map json_)
  : this(
      staticText: json_['staticText'] as core.String?,
      textResponseInstruction:
          json_['textResponseInstruction'] as core.String?,
      type: json_['type'] as core.String?,
    );