SQLColumnDefinition constructor

const SQLColumnDefinition({
  1. required String name,
  2. required bool optional,
  3. required SQLDataType type,
  4. required bool nullable,
  5. required bool autoIncrement,
  6. required String? defaultValueExpression,
})

Implementation

const SQLColumnDefinition({
  required this.name,
  required this.optional,
  required this.type,
  required this.nullable,
  required this.autoIncrement,
  required this.defaultValueExpression,
});