inject method

void inject(
  1. dynamic val,
  2. {bool fill = false}
)

Injects a value onto this signal in the current Simulator tick.

This function calls put() in Simulator.injectAction().

Implementation

void inject(dynamic val, {bool fill = false}) =>
    _wire.inject(val, signalName: name, fill: fill);