withColumn method

SelectStatementBuilder withColumn(
  1. String columnName, {
  2. String? tableName,
})

Fluent method to add a selected column

Implementation

SelectStatementBuilder withColumn(String columnName, {String? tableName}) {
  selectColumn(columnName, tableName: tableName);
  return this;
}