ColumnEntity constructor
      
      ColumnEntity({ 
    
    
- bool? array,
- int? arrayLength,
- bool? autoGenerated,
- String? charset,
- String? collation,
- String? comment,
- bool? computed,
- Map<String, Object?> ? customFeatures,
- String? dataType,
- String? defaultValue,
- int? fractionalSecondsPrecision,
- String? length,
- String? name,
- bool? nullable,
- int? ordinalPosition,
- int? precision,
- int? scale,
- List<String> ? setValues,
- bool? udt,
Implementation
ColumnEntity({
  this.array,
  this.arrayLength,
  this.autoGenerated,
  this.charset,
  this.collation,
  this.comment,
  this.computed,
  this.customFeatures,
  this.dataType,
  this.defaultValue,
  this.fractionalSecondsPrecision,
  this.length,
  this.name,
  this.nullable,
  this.ordinalPosition,
  this.precision,
  this.scale,
  this.setValues,
  this.udt,
});