Column constructor

Column({
  1. required String name,
  2. String? comment,
  3. Map<String, String>? parameters,
  4. String? type,
})

Implementation

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