isNotValue method

Expression<bool> isNotValue(
  1. D value
)

Generates an IS NOT expression in SQL, comparing this expression with the Dart value.

This the inverse of isValue.

Implementation

Expression<bool> isNotValue(D value) {
  return isNotExp(variable(value));
}