limit method
Limits the number of results
Implementation
QueryBuilder limit(int count) {
if (count < 0) {
throw ArgumentError('Limit must be non-negative');
}
_limit = count;
return this;
}
Limits the number of results
QueryBuilder limit(int count) {
if (count < 0) {
throw ArgumentError('Limit must be non-negative');
}
_limit = count;
return this;
}