TaskExecution.fromJson constructor

TaskExecution.fromJson(
  1. Map json_
)

Implementation

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