offset method

QueryBuilder<OBJ, R, QAfterOffset> offset(
  1. int offset
)

Offset the query results by a static number.

Implementation

QueryBuilder<OBJ, R, QAfterOffset> offset(int offset) {
  return copyWithInternal(offset: offset);
}