offset method
Sets the number of items to skip.
Implementation
DatumQueryBuilder<T> offset(int count) {
assert(count >= 0, 'offset must be non-negative');
_offset = count;
return this;
}
Sets the number of items to skip.
DatumQueryBuilder<T> offset(int count) {
assert(count >= 0, 'offset must be non-negative');
_offset = count;
return this;
}