Column constructor

const Column({
  1. ColumnType? type,
  2. String? name,
  3. int length = 255,
  4. int? width,
  5. bool nullable = false,
  6. bool readonly = false,
  7. bool unique = false,
  8. bool primary = false,
  9. bool select = true,
  10. bool generated = false,
  11. ColumnRelation? relation,
  12. String? attributeName,
})

Implementation

const Column(
    {this.type,
    this.name,
    this.length = 255,
    this.width,
    this.nullable = false,
    this.readonly = false,
    this.unique = false,
    this.primary = false,
    this.select = true,
    this.generated = false,
    this.relation,
    this.attributeName});