ColumnInfo constructor

const ColumnInfo({
  1. required String name,
  2. required String storageType,
  3. required bool nullable,
  4. String? defaultSql,
  5. bool generated = false,
  6. ComputedColumn? computed,
  7. int? integerBits,
  8. String? collation,
  9. int? decimalPrecision,
  10. int? decimalScale,
  11. int? temporalPrecision,
})

Records physical column facts without interpreting them as a Dart model.

Implementation

const ColumnInfo({
  required this.name,
  required this.storageType,
  required this.nullable,
  this.defaultSql,
  this.generated = false,
  this.computed,
  this.integerBits,
  this.collation,
  this.decimalPrecision,
  this.decimalScale,
  this.temporalPrecision,
});