whereExists method

void whereExists(
  1. String key
)

Add a constraint for finding objects that contain the given key.

Implementation

void whereExists(String key) {
  _addCondition(key, "\$exists", true);
}