notEqualValue method

BooleanExpression notEqualValue(
  1. Object? value
)

Checks if this expression does not equal a value

Implementation

BooleanExpression notEqualValue(Object? value) {
  return _NotEqualExpression(this, _toExpression(value));
}