NodeConfig.fromJson constructor

NodeConfig.fromJson(
  1. Map json_
)

Implementation

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