Column constructor

Column({
  1. required String postgresFormat,
  2. required String dbColName,
  3. required String camelColName,
  4. List<String> enumValues = const [],
  5. dynamic hasDefaultValue,
  6. String? description,
  7. int? maxLength,
  8. bool isPrimaryKey = false,
  9. bool isSerialType = false,
  10. bool isInRequiredColumn = false,
})

Implementation

Column({
  required this.postgresFormat,
  required this.dbColName,
  required this.camelColName,
  this.enumValues = const [],
  this.hasDefaultValue,
  this.description,
  this.maxLength,
  this.isPrimaryKey = false,
  this.isSerialType = false,
  this.isInRequiredColumn = false,
});