ColumnType constructor

const ColumnType(
  1. ColumnTypeName name, {
  2. int? length,
  3. int? precision,
  4. int? scale,
  5. String? customName,
  6. bool timezoneAware = false,
})

Implementation

const ColumnType(
  this.name, {
  this.length,
  this.precision,
  this.scale,
  this.customName,
  this.timezoneAware = false,
});