ToolResultsHistory.fromJson constructor

ToolResultsHistory.fromJson(
  1. Map _json
)

Implementation

ToolResultsHistory.fromJson(core.Map _json)
    : this(
        historyId: _json.containsKey('historyId')
            ? _json['historyId'] as core.String
            : null,
        projectId: _json.containsKey('projectId')
            ? _json['projectId'] as core.String
            : null,
      );