whereNotEqualTo method

ConversationQuery whereNotEqualTo(
  1. String key,
  2. dynamic value
)

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