offset method

PlexQuery<T> offset(
  1. int n
)

Skip n results.

Implementation

PlexQuery<T> offset(int n) {
  _offset = n;
  return this;
}