MysqlColumn constructor

MysqlColumn({
  1. String? collation,
  2. String? column,
  3. String? dataType,
  4. int? length,
  5. bool? nullable,
  6. int? ordinalPosition,
  7. int? precision,
  8. bool? primaryKey,
  9. int? scale,
})

Implementation

MysqlColumn({
  this.collation,
  this.column,
  this.dataType,
  this.length,
  this.nullable,
  this.ordinalPosition,
  this.precision,
  this.primaryKey,
  this.scale,
});