isNotIn method

Expression<bool?> isNotIn(
  1. Iterable<D> values
)

An expression that is true if this does not resolve to any of the values in values.

Implementation

Expression<bool?> isNotIn(Iterable<D> values) {
  return _InExpression(this, values.toList(), true);
}