ColumnMetadata constructor

const ColumnMetadata({
  1. required String name,
  2. required String type,
  3. bool isNullable = true,
  4. bool isPrimaryKey = false,
  5. bool isAutoIncrement = false,
})

Implementation

const ColumnMetadata({
  required this.name,
  required this.type,
  this.isNullable = true,
  this.isPrimaryKey = false,
  this.isAutoIncrement = false,
});