CreateInt constructor

const CreateInt(
  1. String name, {
  2. bool isNullable = false,
  3. bool autoIncrement = false,
  4. bool isPrimary = false,
  5. Foreign? foreignKey,
  6. String? uniqueGroup,
})

Implementation

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