skip method

Relation<R, F> skip(
  1. int count
)

Skips count rows per parent; batched pagination requires orderBy.

Implementation

Relation<R, F> skip(int count) {
  if (count < 0) throw ArgumentError.value(count, 'count');
  return copyQuery(queryState.copy(offset: count));
}