ColumnDef constructor

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

Implementation

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