offset method

void offset(
  1. int offset
)

Document Skip count on start for list query

Implementation

void offset(int offset) {
  assert(offset >= 0, "offset must be greater than or equal to 0");
  _offset = offset;
}