limit method

void limit(
  1. int limit
)

Sets the limit of this Query.

When running this query, a maximum of limit results will be returned.

Implementation

void limit(int limit) {
  _limit = limit;
}