limit method Null safety
Limits the amount of rows returned by capping them at limit. If offset
is provided as well, the first offset
rows will be skipped and not
included in the result.
Implementation
void limit(int limit, {int? offset}) {
limitExpr = Limit(limit, offset);
}