Instance_NodeConfig constructor

Instance_NodeConfig({
  1. int? cpuCount,
  2. int? memorySizeMb,
})

Implementation

factory Instance_NodeConfig({
  $core.int? cpuCount,
  $core.int? memorySizeMb,
}) {
  final $result = create();
  if (cpuCount != null) {
    $result.cpuCount = cpuCount;
  }
  if (memorySizeMb != null) {
    $result.memorySizeMb = memorySizeMb;
  }
  return $result;
}