ID constructor

const ID({
  1. String? sqlType,
  2. SqlType? type,
  3. String? columnName,
  4. bool autoIncrement = false,
  5. bool unique = true,
  6. String? collate,
})

Creates an @ID primary-key annotation.

Implementation

const ID({
  super.sqlType,
  super.type,
  super.columnName,
  this.autoIncrement = false,
  super.unique = true,
  super.collate,
});