whereDoesNotMatchKeyInQuery method
Add a constraint to the query that requires a particular key's value does not match any value for a key in the results of another ParseQuery.
Implementation
void whereDoesNotMatchKeyInQuery(
String key, String keyInQuery, ParseQuery query) {
final condition = <String, dynamic>{
"keyInQuery": keyInQuery,
"query": query.toJson()
};
_addCondition(key, "whereDoesNotMatchKeyInQuery", condition);
}