descWithTable method
Adds a descending ORDER BY column to the clause with table name.
Implementation
void descWithTable(String tableName, String columnName) => addColumn(
columnName,
tableName: tableName,
direction: SortDirection.descending,
);