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,
      );