offset method

QueryBuilder offset(
  1. int count
)

Implementation

QueryBuilder offset(int count) {
  _offsetValue = count;
  return this;
}