offset method

void offset(
  1. int offset
)

Sets the offset of this Query.

When running this query, offset results will be skipped.

Implementation

void offset(int offset) {
  _offset = offset;
}