ToolResultsStep.fromJson constructor

ToolResultsStep.fromJson(
  1. Map json_
)

Implementation

ToolResultsStep.fromJson(core.Map json_)
    : this(
        executionId: json_.containsKey('executionId')
            ? json_['executionId'] as core.String
            : null,
        historyId: json_.containsKey('historyId')
            ? json_['historyId'] as core.String
            : null,
        projectId: json_.containsKey('projectId')
            ? json_['projectId'] as core.String
            : null,
        stepId: json_.containsKey('stepId')
            ? json_['stepId'] as core.String
            : null,
      );