ascWithTable method

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

Adds an ascending ORDER BY column to the clause with table name.

Implementation

void ascWithTable(String tableName, String columnName) => addColumn(
      columnName,
      tableName: tableName,
    );