limit method

Query limit(
  1. int limit
)

Implementation

Query limit(int limit) {
  if (!_joinQuery.contains('LIMIT')) {
    _limit += ' LIMIT $limit ';
  }
  return this;
}