whereExists method

ConversationQuery whereExists(
  1. String key
)

The field corresponding to key exists.

Implementation

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