CosimProcessConfig constructor

const CosimProcessConfig({
  1. String directory = _defaultCosimDirectory,
  2. bool enableLogging = false,
  3. bool throwOnUnexpectedEnd = true,
})

Creates a configuration which launches a sub-process to cosimulate with.

Implementation

const CosimProcessConfig({
  this.directory = _defaultCosimDirectory,
  super.enableLogging,
  super.throwOnUnexpectedEnd,
});