descWithTable method

void descWithTable(
  1. String tableName,
  2. String columnName
)

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,
    );