orderByAscending method

void orderByAscending(
  1. String order
)

Sorts the results in ascending order.

String order will be the column of the table that the results are ordered by

Implementation

void orderByAscending(String order) {
  if (!limiters.containsKey('order')) {
    limiters['order'] = order;
  } else {
    limiters['order'] = limiters['order'] + ',' + order;
  }
}