endAt method

QueryPlatform endAt(
  1. Iterable fields
)

Takes a list of fields, creates and returns a new QueryPlatform that ends at the provided fields relative to the order of the query.

The fields must be in order of orderBy filters.

Cannot be used in combination with endBefore, endBeforeDocument, or endAtDocument, but can be used in combination with startAt, startAfter, startAtDocument and startAfterDocument.

Implementation

QueryPlatform endAt(Iterable<dynamic> fields) {
  throw UnimplementedError('endAt() is not implemented');
}