$MachineConfig.fromJson constructor

$MachineConfig.fromJson(
  1. Map json_
)

Implementation

$MachineConfig.fromJson(core.Map json_)
    : this(
        cpuCount: json_.containsKey('cpuCount')
            ? json_['cpuCount'] as core.int
            : null,
      );