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