offset method

DatumQueryBuilder<T> offset(
  1. int count
)

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;
}