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 isNotInExp([for (final value in values) variable(value)]);
}