ToolResultsStep.fromJson constructor
ToolResultsStep.fromJson(
- 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,
);