limit method

QueryPlatform limit(
  1. int limit
)

Creates and returns a new Query that's additionally limited to only return up to the specified number of documents.

Implementation

QueryPlatform limit(int limit) {
  throw UnimplementedError('limit() is not implemented');
}