ColumnString constructor

ColumnString(
  1. String columnName,
  2. Table table, {
  3. int? varcharLength,
})

Creates a new Column, this is typically done in generated code only.

Implementation

ColumnString(
  super.columnName,
  super.table, {
  this.varcharLength,
});