offset property

  1. @TagNumber(6)
int offset

The number of documents to skip before returning the first result.

This applies after the constraints specified by the WHERE, START AT, & END AT but before the LIMIT clause.

Requires:

  • The value must be greater than or equal to zero if specified.

Implementation

@$pb.TagNumber(6)
$core.int get offset => $_getIZ(5);
  1. @TagNumber(6)
void offset=(int v)

Implementation

@$pb.TagNumber(6)
set offset($core.int v) {
  $_setSignedInt32(5, v);
}