startAfter method

TypedQuery<D> startAfter(
  1. List values
)

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

The values must be in order of orderBy filters.

Cannot be used in combination with startAt, startAfterDocument, or startAtDocument.

Implementation

TypedQuery<D> startAfter(List<dynamic> values) {
  return TypedQuery(_firestore, _inner.startAfter(values));
}