MysqlColumn constructor

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

Implementation

MysqlColumn({
  this.collation,
  this.columnName,
  this.dataType,
  this.length,
  this.nullable,
  this.ordinalPosition,
  this.primaryKey,
});