endBeforeDocument method

QueryPlatform endBeforeDocument(
  1. Iterable orders,
  2. Iterable values
)

Creates and returns a new QueryPlatform that ends before the provided document (exclusive). 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 endAt, endBefore, or endAtDocument, but can be used in combination with startAt, startAfter, startAtDocument and startAfterDocument.

See also:

Implementation

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