desc method

void desc(
  1. String columnName, {
  2. String? tableName,
})

Adds a descending ORDER BY column to the clause.

Implementation

void desc(String columnName, {String? tableName}) => addColumn(
      columnName,
      tableName: tableName,
      direction: SortDirection.descending,
    );