hasLimit method
Checks if the query has a LIMIT clause.
Implementation
bool hasLimit() {
return _limit.limit != null && _limit.offset != null;
}
Checks if the query has a LIMIT clause.
bool hasLimit() {
return _limit.limit != null && _limit.offset != null;
}