Column constructor
Column({
- required String postgresFormat,
- required String dbColName,
- required String camelColName,
- required List<
String> enumValues, - required bool isEnum,
- required bool jsonbToDynamic,
- dynamic hasDefaultValue,
- String? description,
- int? maxLength,
- bool isPrimaryKey = false,
- bool isSerialType = false,
- 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,
});