whereIn method

FSPaginator<T> whereIn(
  1. String field,
  2. List values
)

Filters results by array field containing any of the provided values.

Implementation

FSPaginator<T> whereIn(String field, List<dynamic> values) {
  query = query.where(field, whereIn: values);
  return this;
}