offset property

  1. @TagNumber(5)
int offset

Offset and count are used to only get a range of the matching elements, similar to "SELECT LIMIT offset, count" in SQL. A negative count returns all elements from the offset. Use (0, -1) to return all matching elements.

Implementation

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

Implementation

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