limit method

QueryBuilder limit(
  1. int value
)

LIMIT clause

Implementation

QueryBuilder limit(int value) {
  _limit = value;
  return this;
}