NodeTypeConfig.fromJson constructor

NodeTypeConfig.fromJson(
  1. Map json_
)

Implementation

NodeTypeConfig.fromJson(core.Map json_)
    : this(
        customCoreCount: json_.containsKey('customCoreCount')
            ? json_['customCoreCount'] as core.int
            : null,
        nodeCount: json_.containsKey('nodeCount')
            ? json_['nodeCount'] as core.int
            : null,
      );