skip method

LCQuery<T> skip(
  1. int amount
)

Sets the amount of results to skip before returning any results.

This is useful for pagination. Default is to skip zero results.

Implementation

LCQuery<T> skip(int amount) {
  condition.skip = amount;
  return this;
}