endAt method

Query 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.

Calling this method will replace any existing cursor "end" query modifiers.

Implementation

Query endAt(List<dynamic> values) {
  _assertQueryCursorValues(values);
  return Query._(firestore, _delegate.endAt(values));
}