offset method

Table offset(
  1. int value
)

Sets the row offset (skips first N rows).

Implementation

Table offset(int value) {
  _offset = value;
  return this;
}