Column constructor

const Column({
  1. required String name,
  2. required bool nullable,
  3. int? length,
})

Implementation

const Column({
  required this.name,
  required this.nullable,
  this.length,
});