endAt property
A potential prefix of a position in the result set to end the query at.
This is similar to START_AT
but with it controlling the end position
rather than the start position.
Requires:
- The number of values cannot be greater than the number of fields
specified in the
ORDER BY
clause.
Implementation
@$pb.TagNumber(8)
Cursor get endAt => $_getN(7);
Implementation
@$pb.TagNumber(8)
set endAt(Cursor v) {
setField(8, v);
}