ToolExecutionStep.fromJson constructor

ToolExecutionStep.fromJson(
  1. Map json_
)

Implementation

ToolExecutionStep.fromJson(core.Map json_)
    : this(
        toolExecution: json_.containsKey('toolExecution')
            ? ToolExecution.fromJson(
                json_['toolExecution'] as core.Map<core.String, core.dynamic>)
            : null,
      );