startAfterDocument method

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

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

See also:

Implementation

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