ColumnDef constructor

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

Implementation

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