skip method

JsonQueryBuilder skip(
  1. int count
)

Implementation

JsonQueryBuilder skip(int count) {
  _skip = count;
  return this;
}