ColumnDefinition constructor

ColumnDefinition({
  1. int id,
  2. String name,
  3. bool imported,
  4. String semanticType,
  5. String unit,
  6. ColumnDefinitionDataTypeEnum dataType,
})

Returns a new ColumnDefinition instance.

Implementation

ColumnDefinition({
  this.id,
  this.name,
  this.imported,
  this.semanticType,
  this.unit,
  this.dataType,
});