endAtDocument method

QueryPlatform endAtDocument(
  1. List orders,
  2. List values
)

Creates and returns a new QueryPlatform that ends at the provided document (inclusive). The end position is relative to the order of the query. The document must contain all of the fields provided in the orderBy of this query.

Cannot be used in combination with endBefore, endBeforeDocument, or endAt, but can be used in combination with startAt, startAfter, startAtDocument and startAfterDocument.

See also:

Implementation

QueryPlatform endAtDocument(List<dynamic> orders, List<dynamic> values) {
  throw UnimplementedError('endAtDocument() is not implemented');
}