Column constructor

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

Implementation

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