whereNotEqualTo method

void whereNotEqualTo (String key, dynamic value)

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);
}