ColumnDatabase constructor

ColumnDatabase({
  1. bool autoIncrement = false,
  2. bool isNull = false,
  3. required String name,
  4. required DataType typeData,
  5. bool primaryKey = false,
  6. String? defaultValue,
})

Implementation

ColumnDatabase({this.autoIncrement = false, this.isNull = false, required this.name, required this.typeData, this.primaryKey = false, this.defaultValue});