whereNear method

LCQuery<T> whereNear(
  1. String key,
  2. LCGeoPoint point
)

Implementation

LCQuery<T> whereNear(String key, LCGeoPoint point) {
  condition.whereNear(key, point);
  return this;
}