getRuntimeInput method

Logic? getRuntimeInput(
  1. Module module
)

Construct and return a Logic? that is a true input to the module if this is a runtime configuration signal.

Implementation

Logic? getRuntimeInput(Module module) => (runtimeConfig != null)
    ? tryRuntimeInput(module) ?? module.addInput(name, runtimeConfig!)
    : null;