ColumnDefinition constructor

ColumnDefinition({
  1. required String name,
  2. required String type,
  3. String? constraint,
  4. bool autoincrement = false,
  5. bool nullable = true,
  6. dynamic defaultValue,
})

Creates a new ColumnDefinition.

Implementation

ColumnDefinition({
  required this.name,
  required this.type,
  this.constraint,
  this.autoincrement = false,
  this.nullable = true,
  this.defaultValue,
});