orderByDescending method
Sorts the results descending order.
String order will be the column of the table that the results are ordered by
Implementation
void orderByDescending(String order) {
if (!limiters.containsKey('order')) {
limiters['order'] = '-$order';
} else {
limiters['order'] = limiters['order'] + ',' + '-$order';
}
}