endAt method

TypedQuery<D> endAt(
  1. List values
)

Takes a list of values, creates and returns a new Query that ends 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 endBefore, endBeforeDocument, or endAtDocument.

Implementation

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