startAt method

TypedQuery<D> startAt(
  1. List values
)

Takes a list of values, creates and returns a new Query that starts at 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 startAfter, startAfterDocument, or startAtDocument.

Implementation

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