ColumnEntity constructor

ColumnEntity({
  1. bool? array,
  2. int? arrayLength,
  3. bool? autoGenerated,
  4. String? charset,
  5. String? collation,
  6. String? comment,
  7. Map<String, Object?>? customFeatures,
  8. String? dataType,
  9. String? defaultValue,
  10. int? fractionalSecondsPrecision,
  11. String? length,
  12. String? name,
  13. bool? nullable,
  14. int? ordinalPosition,
  15. int? precision,
  16. int? scale,
  17. List<String>? setValues,
  18. bool? udt,
})

Implementation

ColumnEntity({
  this.array,
  this.arrayLength,
  this.autoGenerated,
  this.charset,
  this.collation,
  this.comment,
  this.customFeatures,
  this.dataType,
  this.defaultValue,
  this.fractionalSecondsPrecision,
  this.length,
  this.name,
  this.nullable,
  this.ordinalPosition,
  this.precision,
  this.scale,
  this.setValues,
  this.udt,
});