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