skip method

LCSearchQuery<T> skip(
  1. int amount
)

Implementation

LCSearchQuery<T> skip(int amount) {
  _skip = amount;
  return this;
}