SqlServerColumn constructor

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

Implementation

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