addOutput method
override
Registers an output to this Module and returns an output port that can be driven by this Module or consumed outside of it.
The return value is the same as what is returned by output.
Implementation
@override
Logic addOutput(String name, {int width = 1}) {
_handleNewPortName(name);
final outPort = super.addOutput(name, width: width);
return outPort;
}