NodeConfig.fromJson constructor

NodeConfig.fromJson(
  1. Map json_
)

Implementation

NodeConfig.fromJson(core.Map json_)
  : this(
      cpuCount: json_['cpuCount'] as core.int?,
      memorySizeMb: json_['memorySizeMb'] as core.int?,
    );