whereNotEqualTo method
Add a constraint to the query that requires a particular key's value to be not equal to the provided value.
Implementation
void whereNotEqualTo(String key, dynamic value) {
_addCondition(key, "whereNotEqualTo", value);
}
Add a constraint to the query that requires a particular key's value to be not equal to the provided value.
void whereNotEqualTo(String key, dynamic value) {
_addCondition(key, "whereNotEqualTo", value);
}