TaskExecution.fromJson constructor

TaskExecution.fromJson(
  1. Map json_
)

Implementation

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