addOrderBy method
---------- ORDER ----------
Implementation
void addOrderBy(String column, {bool descending = false}) {
final dir = descending ? 'DESC' : 'ASC';
final clause = '$column $dir';
orderByClause =
orderByClause == null ? clause : '$orderByClause, $clause';
}