Column constructor

const Column(
  1. String name,
  2. DataTypeInterface type, {
  3. bool nullable = false,
  4. bool index = false,
  5. bool unique = false,
})

Implementation

const Column(this.name, this.type,
    {this.nullable = false, this.index = false, this.unique = false});