whereDoesNotExist method

LCQuery<T> whereDoesNotExist(
  1. String key
)

The LCObject must not contain the given key.

Implementation

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