startAtDocument method

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

Creates and returns a new QueryPlatform that starts at the provided document (inclusive). The starting 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 startAfterDocument, startAfter, or startAt, but can be used in combination with endAt, endBefore, endAtDocument and endBeforeDocument.

See also:

Implementation

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