orderBy method
Orders the query results by a field's value.
Implementation
FSPaginator<T> orderBy(String field, { bool descending = false }) {
query = query.orderBy(field, descending: descending);
return this;
}
Orders the query results by a field's value.
FSPaginator<T> orderBy(String field, { bool descending = false }) {
query = query.orderBy(field, descending: descending);
return this;
}