Column constructor

const Column({
  1. required String name,
  2. required DataType type,
  3. bool isPrimaryKey = false,
  4. bool isNullable = true,
  5. bool isIndexed = false,
})

Implementation

const Column({
  required this.name,
  required this.type,
  this.isPrimaryKey = false,
  this.isNullable = true,
  this.isIndexed = false,
});