CreateInt.primary constructor

const CreateInt.primary(
  1. String name, {
  2. Foreign? foreignKey,
  3. String? uniqueGroup,
})

Implementation

const CreateInt.primary(this.name, {this.foreignKey, this.uniqueGroup})
    : isPrimary = true,
      isNullable = false,
      autoIncrement = false;