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