limit method
Sets the maximum number of items to return.
Implementation
DatumQueryBuilder<T> limit(int count) {
assert(count > 0, 'limit must be positive');
_limit = count;
return this;
}
Sets the maximum number of items to return.
DatumQueryBuilder<T> limit(int count) {
assert(count > 0, 'limit must be positive');
_limit = count;
return this;
}