isIn method

Where isIn(
  1. List values
)

Builds a WHERE IN query.

Implementation

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

  return this;
}