ColumnDriverOverride constructor
const
ColumnDriverOverride({
- ColumnType? type,
- String? sqlType,
- ColumnDefault? defaultValue,
- String? collation,
- String? charset,
Implementation
const ColumnDriverOverride({
this.type,
this.sqlType,
this.defaultValue,
this.collation,
this.charset,
}) : assert(
type == null || sqlType == null,
'Provide either a logical ColumnType or a raw SQL type, not both.',
);