take method

QueryBuilder<T> take(
  1. int count
)

TAKE (LIMIT)

Implementation

QueryBuilder<T> take(int count) {
  _take = count;
  return this;
}