whereExists method

LCQuery<T> whereExists(
  1. String key
)

The LCObject must contain the given key.

Implementation

LCQuery<T> whereExists(String key) {
  condition.whereExists(key);
  return this;
}