skip method

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

Replaces the row offset; count must be nonnegative.

Implementation

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