skip method

QueryBuilder skip(
  1. int value
)

Sets the skip

Implementation

QueryBuilder skip(int value) {
  _skip = value;
  return this;
}