hasLimit method

bool hasLimit()

Checks if the query has a LIMIT clause.

Implementation

bool hasLimit() {
  return _limit.limit != null && _limit.offset != null;
}