offset method

QueryBuilder offset(
  1. int n
)

Skips the first n matching rows (offset-based pagination).

Implementation

QueryBuilder offset(int n) {
  _offset = n;
  return this;
}