whereEndsWith method

LCQuery<T> whereEndsWith(
  1. String key,
  2. String suffix
)

Implementation

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