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