endBefore method

TypedQuery<D> endBefore(
  1. List values
)

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

Implementation

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