ColumnDefinition constructor

const ColumnDefinition({
  1. required String name,
  2. required String type,
  3. bool isNullable = true,
  4. bool isAutoIncrement = false,
  5. String? defaultValue,
  6. List<String>? enumValues,
  7. bool isJson = false,
  8. bool isList = false,
})

Implementation

const ColumnDefinition({
  required this.name,
  required this.type,
  this.isNullable = true,
  this.isAutoIncrement = false,
  this.defaultValue,
  this.enumValues,
  this.isJson = false,
  this.isList = false,
});