ToolExitCode.fromJson constructor
ToolExitCode.fromJson(
- Map _json
Implementation
ToolExitCode.fromJson(core.Map _json)
: this(
number:
_json.containsKey('number') ? _json['number'] as core.int : null,
);