limit method

QueryBuilder limit(
  1. int count
)

Limits the number of results

Implementation

QueryBuilder limit(int count) {
  if (count < 0) {
    throw ArgumentError('Limit must be non-negative');
  }
  _limit = count;
  return this;
}