whereNotEqualTo method
The value corresponding to key
is not equal to value
, or the array corresponding to key
does not contain value
.
Implementation
ConversationQuery whereNotEqualTo(
String key,
dynamic value,
) {
condition.whereNotEqualTo(key, value);
return this;
}