endAt method
- List fieldValues
Ends the query at a specific document where the field values provided are met.
Implementation
FSPaginator<T> endAt(List<dynamic> fieldValues) {
query = query.endAt(fieldValues);
return this;
}
Ends the query at a specific document where the field values provided are met.
FSPaginator<T> endAt(List<dynamic> fieldValues) {
query = query.endAt(fieldValues);
return this;
}