limit method

LCSearchQuery<T> limit(
  1. int amount
)

Implementation

LCSearchQuery<T> limit(int amount) {
  _limit = amount;
  return this;
}