offset method

DbQueryBuilder<T> offset(
  1. int n
)

Implementation

DbQueryBuilder<T> offset(int n) {
  _offsetVal = n;
  return this;
}