whereIn method

  1. @override
QueryBuilder whereIn(
  1. String column,
  2. List values, {
  3. String boolean = 'and',
  4. bool not = false,
})
inherited

Implementation

@override
QueryBuilder whereIn(
  String column,
  List values, {
  String boolean = 'and',
  bool not = false,
}) {
  _appendCondition(
    _createInCondition(column, values, not),
    isOr: (boolean.toLowerCase() == 'or'),
  );
  return this;
}