isNot method

Where isNot(
  1. dynamic value
)

Implementation

Where isNot(value) {
  this.value = value;
  this.operator = 'IS NOT';

  return this;
}