MachineConfig.fromJson constructor

MachineConfig.fromJson(
  1. Map json_
)

Implementation

MachineConfig.fromJson(core.Map json_)
  : this(
      cpuCount: json_['cpuCount'] as core.int?,
      machineType: json_['machineType'] as core.String?,
    );