CuReDatabaseTableColumn constructor
CuReDatabaseTableColumn({
- required String name,
- required CuReDatabaseColumnType type,
- bool isPrimaryKey = false,
- bool isAutoIncrement = false,
- bool isNotNull = false,
- dynamic defaultValue,
Implementation
CuReDatabaseTableColumn({
required this.name,
required this.type,
this.isPrimaryKey = false,
this.isAutoIncrement = false,
this.isNotNull = false,
this.defaultValue,
});