offset method
Skips the first n matching rows (offset-based pagination).
Implementation
QueryBuilder offset(int n) {
_offset = n;
return this;
}
Skips the first n matching rows (offset-based pagination).
QueryBuilder offset(int n) {
_offset = n;
return this;
}