ToolExitCode.fromJson constructor

ToolExitCode.fromJson(
  1. Map _json
)

Implementation

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