ColumnDriverOverride constructor

const ColumnDriverOverride({
  1. ColumnType? type,
  2. String? sqlType,
  3. ColumnDefault? defaultValue,
  4. String? collation,
  5. 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.',
     );