whereContainedIn method

void whereContainedIn (String key, List values)

Add a constraint to the query that requires a particular key's value to be contained in the provided list of values.

Implementation

void whereContainedIn(String key, List<dynamic> values) {
  _addCondition(key, "whereContainedIn", values);
}