ColumnInfo constructor
const
ColumnInfo({})
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,
});