whereNotIn method
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;
}
Filters by an array field NOT containing any of the provided values.
FSPaginator<T> whereNotIn(String field, List<dynamic> values) {
query = query.where(field, whereNotIn: values);
return this;
}