notIn method

Where notIn(
  1. List values
)

Builds a WHERE NOT IN query.

Implementation

Where notIn(List<dynamic> values) {
  this.value = values;
  this.operator = 'NOT IN';

  return this;
}