whereStartsWith method

LCQuery<T> whereStartsWith(
  1. String key,
  2. String prefix
)

Implementation

LCQuery<T> whereStartsWith(String key, String prefix) {
  condition.whereStartsWith(key, prefix);
  return this;
}