notInArray function
Matches if the field
does not contain any of the given values.
Implementation
FilterExpr notInArray(String field, List<dynamic> values) {
return FilterNotIn(field, values);
}
Matches if the field
does not contain any of the given values.
FilterExpr notInArray(String field, List<dynamic> values) {
return FilterNotIn(field, values);
}