ExitInfo.fromJson constructor

ExitInfo.fromJson(
  1. Map json_
)

Implementation

ExitInfo.fromJson(core.Map json_)
  : this(
      error: json_['error'] as core.String?,
      exitCode: json_['exitCode'] as core.int?,
    );