orderByDescending method

void orderByDescending(
  1. String order
)

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';
  }
}