offset method
Offset the results returned by a query by this number of rows.
Implementation
void offset(int i) {
if (_offsetClause != null) {
throw StanzaException(
'Cannot have more than one offset clause in a query.');
}
_offsetClause = OffsetClause(i);
}