Matcher for matching values that are within the list of values when using Query.where.
See Query.where. Example:
var query = new Query<Employee>()
..where.department = whereIn(["Engineering", "HR"]);
Source
dynamic whereIn(Iterable<dynamic> values) {
return new WithinMatcherExpression(values.toList());
}