ToolResultsExecution.fromJson constructor

ToolResultsExecution.fromJson(
  1. Map _json
)

Implementation

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