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