inOuts property

Map<String, Logic> get inOuts

A map from inOut port names to this Module to corresponding Logic signals.

Note that inOuts should only be used for hardware within a Module. To access the signal that drives/received these inOuts from outside of this Module, use inOutSource.

Implementation

Map<String, Logic> get inOuts => UnmodifiableMapView<String, Logic>(_inOuts);