whereNotIn method

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

Filters by an array field NOT containing any of the provided values.

Implementation

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