include method

LCQuery<T> include(
  1. String key
)

Includes nested LCObject for the provided key.

Implementation

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