PostgresColumn constructor

PostgresColumn(
  1. String name,
  2. String type, {
  3. List<String>? flags = const [],
  4. int? typeModifier,
})

Implementation

PostgresColumn(
  this.name,
  this.type, {
  this.flags = const [],
  this.typeModifier,
});