inArray function
Matches if the field
contains any of the given values.
Implementation
FilterExpr inArray(String field, List<dynamic> values) {
return FilterIn(field, values);
}
Matches if the field
contains any of the given values.
FilterExpr inArray(String field, List<dynamic> values) {
return FilterIn(field, values);
}