notEqualTo function

Builder notEqualTo(
  1. Builder value,
  2. Builder other
)

Returns the not equal to operator of this and other.

this != other

Implementation

Builder notEqualTo(
  Builder value,
  Builder other,
) {
  return Row.binary(left: value, right: other, operator: '!=');
}