Where.not constructor

Where.not(
  1. String columnName,
  2. WhereOperator operator,
  3. Object value
)

Implementation

Where.not(
  this.columnName,
  this.operator,
  this.value,
) {
  prev = 'WHERE NOT';
}