Skips the first n items after filter + sort, before limit.
n
Query<T> skip(int n) { if (n < 0) throw ArgumentError.value(n, 'n', 'skip must be non-negative'); return Query<T>._(_collection, _spec._withSkip(n)); }