ColumnDef constructor

const ColumnDef({
  1. required FieldType type,
  2. dynamic defaultValue,
  3. bool notNull = false,
  4. bool autoIncrement = true,
})

Implementation

const ColumnDef({
  required this.type,
  this.defaultValue,
  this.notNull = false,
  this.autoIncrement = true,
});