Multiply constructor
Calculates the product of in0
and in1
.
in1
can be either a Logic or a constant be processable by
LogicValue.of.
Implementation
Multiply(Logic in0, dynamic in1, {String name = 'multiply'})
: super((a, b) => a * b, '*', in0, in1,
name: name, makeSelfDetermined: true);