Column constructor

Column({
  1. required String name,
  2. String? comment,
  3. String? type,
})

Implementation

Column({
  required this.name,
  this.comment,
  this.type,
});