OrderByListBuilder<T extends Table> typedef
A function that returns a list of Column for a Table to be used with
order by list. Use Column.desc() to change the order to descending.
Implementation
typedef OrderByListBuilder<T extends Table> = List<Column> Function(T);