CuReDatabaseTableColumn constructor

CuReDatabaseTableColumn({
  1. required String name,
  2. required CuReDatabaseColumnType type,
  3. bool isPrimaryKey = false,
  4. bool isAutoIncrement = false,
  5. bool isNotNull = false,
  6. dynamic defaultValue,
})

Implementation

CuReDatabaseTableColumn({
  required this.name,
  required this.type,
  this.isPrimaryKey = false,
  this.isAutoIncrement = false,
  this.isNotNull = false,
  this.defaultValue,
});