Column constructor

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

Implementation

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