skip method

CollectionQuery<T> skip(
  1. int i
)

Implementation

CollectionQuery<T> skip(int i) {
  if (i.isNegative) {
    throw Exception(r"$skip cannot accept negative value");
  }

  _skip = i;

  return this;
}