notBetween method

Where notBetween(
  1. dynamic from,
  2. dynamic to
)

Implementation

Where notBetween(dynamic from, dynamic to) {
  this.value = [from, to];
  this.operator = 'NOT BETWEEN';

  return this;
}