ColumnDto constructor

const ColumnDto({
  1. required String name,
  2. required String type,
  3. required String rawType,
  4. required bool isNullable,
  5. required bool isPrimaryKey,
  6. ForeignKeyDto? foreignKey,
})

Implementation

const ColumnDto({
  required this.name,
  required this.type,
  required this.rawType,
  required this.isNullable,
  required this.isPrimaryKey,
  this.foreignKey,
});