whereNotContainedIn method

void whereNotContainedIn (String key, List values)

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

Implementation

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