Subtract constructor
Calculates the difference between in0
and in1
.
in1
can be either a Logic or a constant be processable by
LogicValue.of.
Implementation
Subtract(Logic in0, dynamic in1, {String name = 'subtract'})
: super((a, b) => a - b, '-', in0, in1, name: name);