TableColumn constructor

TableColumn(
  1. String name,
  2. ResolvedType _type, {
  3. ColumnDefinition? definition,
  4. bool isGenerated = false,
  5. bool isHidden = false,
})

Implementation

TableColumn(
  this.name,
  this._type, {
  this.definition,
  this.isGenerated = false,
  this.isHidden = false,
});