whereDoesNotExist method

ConversationQuery whereDoesNotExist(
  1. String key
)

The field corresponding to key does not exist.

Implementation

ConversationQuery whereDoesNotExist(
  String key,
) {
  condition.whereDoesNotExist(key);
  return this;
}