Column constructor

const Column({
  1. bool isNullable = true,
  2. int length = 255,
  3. int precision = 17,
  4. int scale = 3,
  5. String? name,
  6. String? timezone,
  7. ColumnType type = ColumnType.varChar,
  8. IndexType indexType = IndexType.none,
  9. String? expression,
  10. dynamic defaultValue,
})

Implementation

const Column(
    {this.isNullable = true,
    this.length = 255,
    this.precision = 17,
    this.scale = 3,
    this.name,
    this.timezone,
    this.type = ColumnType.varChar,
    this.indexType = IndexType.none,
    this.expression,
    this.defaultValue});