NotEquals constructor
Calculates whether in0
and in1
are not-equal.
Implementation
NotEquals(Logic in0, dynamic in1, {String name = 'notEquals'})
: super((a, b) => a.neq(b), '!=', in0, in1, name: name);
Calculates whether in0
and in1
are not-equal.
NotEquals(Logic in0, dynamic in1, {String name = 'notEquals'})
: super((a, b) => a.neq(b), '!=', in0, in1, name: name);