Column constructor

const Column({
  1. String? name,
  2. String? defaultValue,
  3. bool isNullable = false,
  4. bool isUnique = false,
})

Implementation

const Column({
  this.name,
  // TODO add regex
  this.defaultValue,
  // TODO add regex
  this.isNullable = false,
  // TODO add regex
  this.isUnique = false,
});