startAfter method

QueryPlatform startAfter(
  1. Iterable fields
)

Takes a list of fields, creates and returns a new QueryPlatform that starts after the provided fields relative to the order of the query.

The fields must be in order of orderBy filters.

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

Implementation

QueryPlatform startAfter(Iterable<dynamic> fields) {
  throw UnimplementedError('startAfter() is not implemented');
}