Column<T> constructor

Column<T>(
  1. String _columnName,
  2. Table table
)

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

Implementation

Column(
  this._columnName,
  this.table,
) : type = T;