whereDoesNotExist method

void whereDoesNotExist (String key)

Add a constraint for finding objects that do not contain a given key.

Implementation

void whereDoesNotExist(String key) {
  _addCondition(key, "whereDoesNotExist", false);
}