isInOut property

bool isInOut
latefinal

Returns true iff this signal is an inOut of its parent Module.

Implementation

late final bool isInOut =
    // this can be cached because parentModule is set at port creation
    parentModule?.isInOut(this) ?? false;