NotEquals constructor
Calculates whether in0 and in1 are not-equal.
in1 can be either a Logic or a constant be processable by
LogicValue.of.
Implementation
NotEquals(Logic in0, dynamic in1, {String name = 'notEquals'})
: super((a, b) => a.neq(b), '!=', in0, in1, name: name);