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